refactor: make cli modular (#390)

* refactor: make cli modular

* chore: apply suggestion from @Rycochet

Co-authored-by: Ryc O'Chet <Rycochet@users.noreply.github.com>

* chore: apply review suggestions

* refactor: no need to handle user escaping in verify cmd

---------

Co-authored-by: Ryc O'Chet <Rycochet@users.noreply.github.com>
This commit is contained in:
Stavros
2025-10-06 21:27:51 +03:00
committed by GitHub
parent 30fe695371
commit 2f8fa39a9b
11 changed files with 452 additions and 377 deletions

View File

@@ -11,5 +11,5 @@ import (
func main() {
log.Logger = log.Output(zerolog.ConsoleWriter{Out: os.Stderr, TimeFormat: time.RFC3339}).With().Timestamp().Caller().Logger()
cmd.Execute()
cmd.Run()
}