2018-10-10 17:55:52 +00:00
|
|
|
#lang racket/base
|
|
|
|
(provide (all-defined-out))
|
|
|
|
|
|
|
|
(define program-name "rodo")
|
2019-02-25 03:36:32 +00:00
|
|
|
(define program-directory "~/.rodo/")
|
|
|
|
(define program-file "todo.txt")
|
2018-10-10 17:55:52 +00:00
|
|
|
(define remove-command "rm")
|
|
|
|
(define add-command "add")
|
|
|
|
(define list-command "ls")
|
|
|
|
(define initialize-command "init")
|
|
|
|
(define help-command '("-h" "--help"))
|
2019-02-25 03:36:32 +00:00
|
|
|
(define path
|
2018-10-10 17:55:52 +00:00
|
|
|
(expand-user-path
|
|
|
|
(string-append
|
|
|
|
program-directory
|
|
|
|
program-file)))
|