16 lines
172 B
Go
16 lines
172 B
Go
|
package auth
|
||
|
|
||
|
import "git.sleepycat.moe/sam/mercury/web/app"
|
||
|
|
||
|
type Auth struct {
|
||
|
*app.App
|
||
|
}
|
||
|
|
||
|
func New(app *app.App) *Auth {
|
||
|
auth := &Auth{
|
||
|
App: app,
|
||
|
}
|
||
|
|
||
|
return auth
|
||
|
}
|