rodo/config.rkt

20 lines
449 B
Racket
Raw Normal View History

#lang racket/base
2018-04-12 18:25:19 +00:00
(provide (all-defined-out))
(define program-name "rodo")
(define program-directory ".rodo/")
(define program-path "~/")
(define program-file "todo-list")
2018-04-13 05:02:48 +00:00
(define path
(expand-user-path
(string-append
program-path
program-directory
program-file)))
(define remove-command "rm")
(define add-command "add")
(define list-command "ls")
(define initialize-command "init")
2018-04-13 05:02:48 +00:00
(define help-command '("-h" "--help"))