This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(ns cats.core | |
(:gen-class) | |
(:require [cats.config :as cc] | |
cats.server)) | |
;; Quick spike to make a "system" tool, to better understand | |
;; the core ideas, and the little gotchas of the whole business | |
;; of safely starting/stopping a service. It's better to use | |
;; one of the community-built libraries for this. | |
;; |