mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-01-20 10:06:47 +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);
|
||
|
|
||
|
}
|