diff options
author | Paul Oliver <contact@pauloliver.dev> | 2025-01-27 14:51:28 +0000 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2025-01-29 04:12:57 +0000 |
commit | 9d2f95bb58f856aaf9142426e90e5783c98af8f1 (patch) | |
tree | 9453d5cbed1ae2165e6c8f0824ded00d2372e7bd /hsm-command | |
parent | 9310ba7e17f97c4570dce33552b3605155ca5c0c (diff) |
Makes doc-comments cleaner/more elegant
Diffstat (limited to 'hsm-command')
-rw-r--r-- | hsm-command/Main.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hsm-command/Main.hs b/hsm-command/Main.hs index d135e53..3d06518 100644 --- a/hsm-command/Main.hs +++ b/hsm-command/Main.hs @@ -21,8 +21,9 @@ data Env = Env $(deriveFromYaml ''Env) --- Command Service: --- Reads movement commands from the terminal and publishes them through ZMQ. +-- Command Service: Reads movement commands from the user via the terminal, +-- using an interface similar to GNU Readline. The parsed commands are then +-- published through ZMQ. main :: IO () main = launch @Env "command" id $ \env logger level -> |