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