module Villefort.Config where import System.Process import Villefort.Definitions import Villefort.Database def = VConfig { daily = [[]], monthly =[[]], yearly =[[]], weekly = defWeekly, port = 3002, noCustom = False, showDatabase = False } defWeekly = Weekly { monday = [return []], tuesday =[return[]], wednesday = [return[]], thursday = [return[]], friday = [return[]], saturday = [return[]], sunday = [return []] } -- ghc -o /home/chris/.villefort/villefort /home/chris/.villefort/villefort.hs