mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 10:46:15 +02:00
14 lines
178 B
C++
14 lines
178 B
C++
|
#include "fetch-settings.hh"
|
||
|
|
||
|
namespace nix {
|
||
|
|
||
|
FetchSettings::FetchSettings()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
FetchSettings fetchSettings;
|
||
|
|
||
|
static GlobalConfig::Register rFetchSettings(&fetchSettings);
|
||
|
|
||
|
}
|