mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
16 lines
307 B
Go
16 lines
307 B
Go
package routes
|
|
|
|
import (
|
|
"github.com/sablierapp/sablier/config"
|
|
"github.com/sablierapp/sablier/pkg/sablier"
|
|
"github.com/sablierapp/sablier/pkg/theme"
|
|
)
|
|
|
|
type ServeStrategy struct {
|
|
Theme *theme.Themes
|
|
|
|
SessionsManager sablier.Sablier
|
|
StrategyConfig config.Strategy
|
|
SessionsConfig config.Sessions
|
|
}
|