summaryrefslogtreecommitdiffhomepage
path: root/internal/logging/logging.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/logging/logging.go')
-rw-r--r--internal/logging/logging.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/internal/logging/logging.go b/internal/logging/logging.go
deleted file mode 100644
index c23cfaff8..000000000
--- a/internal/logging/logging.go
+++ /dev/null
@@ -1,23 +0,0 @@
-package logging
-
-import (
- "context"
-
- "github.com/kujtimiihoxha/termai/internal/pubsub"
-)
-
-type Interface interface {
- Debug(msg string, args ...any)
- Info(msg string, args ...any)
- Warn(msg string, args ...any)
- Error(msg string, args ...any)
- Subscribe(ctx context.Context) <-chan pubsub.Event[LogMessage]
-
- PersistDebug(msg string, args ...any)
- PersistInfo(msg string, args ...any)
- PersistWarn(msg string, args ...any)
- PersistError(msg string, args ...any)
- List() []LogMessage
-
- SetLevel(level string)
-}