diff options
author | 2021-08-26 18:55:39 +0200 | |
---|---|---|
committer | 2021-08-26 18:55:39 +0200 | |
commit | 1582cf8bad94890a1957595a0fd51bb128941280 (patch) | |
tree | be4ec777fa7f49dc7f272c4492ea92ace62fea41 /internal/db/session.go | |
parent | oops (#157) (diff) | |
download | gotosocial-1582cf8bad94890a1957595a0fd51bb128941280.tar.xz |
fix null returned session (#159)
Diffstat (limited to 'internal/db/session.go')
-rw-r--r-- | internal/db/session.go | 1 |
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) } |