rodo/config.rkt

17 lines
418 B
Racket
Raw Normal View History

2018-10-10 17:55:52 +00:00
#lang racket/base
(provide (all-defined-out))
(define program-name "rodo")
(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"))
(define path
2018-10-10 17:55:52 +00:00
(expand-user-path
(string-append
program-directory
program-file)))