Added CLI commands

This commit is contained in:
2023-10-17 14:01:01 +02:00
parent 19d23eeec4
commit c3925e86b3
10 changed files with 143 additions and 2 deletions

15
main_test.go Normal file
View File

@ -0,0 +1,15 @@
package main_test
import (
"io"
"os"
"testing"
"git.akyoto.dev/cli/q/log"
)
func TestMain(m *testing.M) {
log.Info.SetOutput(io.Discard)
log.Error.SetOutput(io.Discard)
os.Exit(m.Run())
}