2019-11-13 10:51:28 -05:00
|
|
|
#lang racket/base
|
2020-06-12 00:46:44 -04:00
|
|
|
|
2019-09-23 16:40:26 -04:00
|
|
|
(provide (all-defined-out))
|
|
|
|
|
|
|
|
(define program-name "rodo")
|
2019-11-13 16:00:45 -05:00
|
|
|
|
2020-06-12 00:46:44 -04:00
|
|
|
(define program-directory (build-path (find-system-path 'home-dir) ".config" "rodo"))
|
|
|
|
(define program-file (build-path program-directory "list.txt"))
|
2019-11-13 16:00:45 -05:00
|
|
|
|
2020-06-12 00:46:44 -04:00
|
|
|
(define help-command "help")
|
2019-11-22 13:35:25 -05:00
|
|
|
|
2020-06-12 00:46:44 -04:00
|
|
|
(define initialize-command "initialize")
|
2019-11-22 13:35:25 -05:00
|
|
|
|
2020-06-12 00:46:44 -04:00
|
|
|
(define add-command "add")
|
2019-11-22 13:35:25 -05:00
|
|
|
|
2020-06-12 00:46:44 -04:00
|
|
|
(define list-command "ls")
|
2019-11-22 13:35:25 -05:00
|
|
|
|
2020-06-12 00:46:44 -04:00
|
|
|
(define remove-command "rm")
|