Initial commit

This commit is contained in:
NortPerm
2023-10-30 15:21:12 +03:00
committed by GitHub
commit 13e2575b4e
149 changed files with 3961 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package logger
import "fmt"
type Logger struct { // TODO
}
func New(level string) *Logger {
return &Logger{}
}
func (l Logger) Info(msg string) {
fmt.Println(msg)
}
func (l Logger) Error(msg string) {
// TODO
}
// TODO

View File

@@ -0,0 +1,7 @@
package logger
import "testing"
func TestLogger(t *testing.T) {
// TODO
}