dnsmanager/src/config.cr

12 lines
240 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 recreate_indexes : Bool = false
property storage_directory : String = "storage"
def initialize
end
end
end