(declare (unit tick-pull)) (module tick-pull () (import scheme) (import commands simple-logger) (import tick) (define-command 'pull "\ pull Pull the latest state of the git repository of tickets from the server." (lambda (args) (if (db-exists?) (db-pull) (die! "The tickets database doesn't exist. Run 'tick init' to create it.")))) ) ;; end module