2017-04-28 21:57:10 +00:00
|
|
|
package database
|
|
|
|
|
|
|
|
// Storage is the parent interface for the database backends of route.
|
|
|
|
type Storage interface {
|
2018-01-21 19:08:43 +00:00
|
|
|
Certs() Certs
|
|
|
|
Routes() Routes
|
|
|
|
Tokens() Tokens
|
2017-04-29 04:18:19 +00:00
|
|
|
|
|
|
|
Close() error
|
2017-04-28 21:57:10 +00:00
|
|
|
}
|
2018-01-22 06:21:32 +00:00
|
|
|
|
|
|
|
type Scanner interface {
|
|
|
|
Scan(...interface{}) error
|
|
|
|
}
|