11 lines
164 B
Go
11 lines
164 B
Go
|
package apiserver
|
||
|
|
||
|
import (
|
||
|
"biblio.bing89.com/auth"
|
||
|
"biblio.bing89.com/conf"
|
||
|
)
|
||
|
|
||
|
type APIServer struct {
|
||
|
Conf *conf.Configuration
|
||
|
authManager auth.AuthManager
|
||
|
}
|