biblio/apiserver/apiserver.go

11 lines
164 B
Go
Raw Normal View History

2022-10-04 21:09:31 +08:00
package apiserver
import (
"biblio.bing89.com/auth"
"biblio.bing89.com/conf"
)
type APIServer struct {
Conf *conf.Configuration
authManager auth.AuthManager
}