rodo/src/config.rkt

19 lines
391 B
Racket
Raw Normal View History

2019-11-13 10:51:28 -05:00
#lang racket/base
(provide (all-defined-out))
(define program-name "rodo")
2019-11-13 16:00:45 -05: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
(define help-command "help")
2019-11-22 13:35:25 -05:00
(define initialize-command "initialize")
2019-11-22 13:35:25 -05:00
(define add-command "add")
2019-11-22 13:35:25 -05:00
(define list-command "ls")
2019-11-22 13:35:25 -05:00
(define remove-command "rm")