fix null returned session (#159)

This commit is contained in:
tobi 2021-08-26 18:55:39 +02:00 committed by GitHub
commit 1582cf8bad
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 103 additions and 22 deletions

View file

@ -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)
}