11 lines
217 B
Common Lisp
11 lines
217 B
Common Lisp
(defpackage :remote-snake-server-game
|
|
(:nicknames :rsg)
|
|
(:use :common-lisp)
|
|
(:export
|
|
#:game))
|
|
|
|
(defpackage :remote-snake-server-api
|
|
(:nicknames :rsapi)
|
|
(:use :common-lisp :jonathan)
|
|
(:export
|
|
#:api))
|