aboutsummaryrefslogtreecommitdiff
path: root/pkg/components/auth/model.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/components/auth/model.go')
-rw-r--r--pkg/components/auth/model.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/pkg/components/auth/model.go b/pkg/components/auth/model.go
deleted file mode 100644
index dd6ce50..0000000
--- a/pkg/components/auth/model.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package auth
-
-import "context"
-
-type (
- Repository interface {
- GetIDByUsername(ctx context.Context, username string) (uint, error)
- GetPassword(ctx context.Context, id uint) ([]byte, error)
- }
-)