mirror of
https://github.com/acepanel/panel.git
synced 2026-02-05 03:22:32 +08:00
17 lines
276 B
Go
17 lines
276 B
Go
package providers
|
|
|
|
import (
|
|
"github.com/goravel/framework/contracts/foundation"
|
|
)
|
|
|
|
type AuthServiceProvider struct {
|
|
}
|
|
|
|
func (receiver *AuthServiceProvider) Register(app foundation.Application) {
|
|
|
|
}
|
|
|
|
func (receiver *AuthServiceProvider) Boot(app foundation.Application) {
|
|
|
|
}
|