17 lines
418 B
Racket
17 lines
418 B
Racket
#lang racket/base
|
|
(provide (all-defined-out))
|
|
|
|
(define program-name "rodo")
|
|
(define program-directory "~/.rodo/")
|
|
(define program-file "todo.txt")
|
|
(define remove-command "rm")
|
|
(define add-command "add")
|
|
(define list-command "ls")
|
|
(define initialize-command "init")
|
|
(define help-command '("-h" "--help"))
|
|
(define path
|
|
(expand-user-path
|
|
(string-append
|
|
program-directory
|
|
program-file)))
|