summaryrefslogtreecommitdiff
path: root/internal/db/session.go
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-08-26 18:55:39 +0200
committerLibravatar GitHub <noreply@github.com>2021-08-26 18:55:39 +0200
commit1582cf8bad94890a1957595a0fd51bb128941280 (patch)
treebe4ec777fa7f49dc7f272c4492ea92ace62fea41 /internal/db/session.go
parentoops (#157) (diff)
downloadgotosocial-1582cf8bad94890a1957595a0fd51bb128941280.tar.xz
fix null returned session (#159)
Diffstat (limited to 'internal/db/session.go')
-rw-r--r--internal/db/session.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/internal/db/session.go b/internal/db/session.go
index ae13dccce..1a547b36b 100644
--- a/internal/db/session.go
+++ b/internal/db/session.go
@@ -27,5 +27,4 @@ import (
// Session handles getting/creation of router sessions.
type Session interface {
GetSession(ctx context.Context) (*gtsmodel.RouterSession, Error)
- CreateSession(ctx context.Context) (*gtsmodel.RouterSession, Error)
}