dnsmanager/src/config.cr

14 lines
333 B
Crystal
Raw Normal View History

2020-12-10 17:29:26 +01:00
class Baguette::Configuration
class DNSManager < IPC
property service_name : String = "dnsmanager"
property login : String = "dnsmanager"
property pass : String?
2020-12-10 17:29:26 +01:00
property recreate_indexes : Bool = false
property storage_directory : String = "storage"
def initialize
end
end
end