forked from lix-project/lix
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);
|
||
|
|
||
|
}
|