blob: e7d5244dc2cdcff56db9300e8c937cfea0880860 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "fetch-settings.hh"
namespace nix {
FetchSettings::FetchSettings()
{
}
FetchSettings fetchSettings;
static GlobalConfig::Register rFetchSettings(&fetchSettings);
}
|