mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
* refactor: rename providers to Provider * refactor folders * fix build cmd * fix build cmd * fix build cmd * fix cmd start
16 lines
315 B
Go
16 lines
315 B
Go
package api
|
|
|
|
import (
|
|
config2 "github.com/sablierapp/sablier/pkg/config"
|
|
"github.com/sablierapp/sablier/pkg/sablier"
|
|
"github.com/sablierapp/sablier/pkg/theme"
|
|
)
|
|
|
|
type ServeStrategy struct {
|
|
Theme *theme.Themes
|
|
|
|
Sablier sablier.Sablier
|
|
StrategyConfig config2.Strategy
|
|
SessionsConfig config2.Sessions
|
|
}
|