You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
366 B
15 lines
366 B
package telegram |
|
|
|
import ( |
|
"github.com/gotd/td/session" |
|
"github.com/gotd/td/tgerr" |
|
) |
|
|
|
// SessionStorage is alias of mtproto.SessionStorage. |
|
type SessionStorage = session.Storage |
|
|
|
// FileSessionStorage is alias of mtproto.FileSessionStorage. |
|
type FileSessionStorage = session.FileStorage |
|
|
|
// Error represents RPC error returned to request. |
|
type Error = tgerr.Error
|
|
|