mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 14:57:16 +08:00
19 lines
431 B
Go
19 lines
431 B
Go
package providers
|
|
|
|
import (
|
|
"github.com/goravel/framework/contracts/database/seeder"
|
|
"github.com/goravel/framework/contracts/foundation"
|
|
"github.com/goravel/framework/facades"
|
|
)
|
|
|
|
type DatabaseServiceProvider struct {
|
|
}
|
|
|
|
func (receiver *DatabaseServiceProvider) Register(app foundation.Application) {
|
|
|
|
}
|
|
|
|
func (receiver *DatabaseServiceProvider) Boot(app foundation.Application) {
|
|
facades.Seeder().Register([]seeder.Seeder{})
|
|
}
|