mirror of
https://github.com/grassrootseconomics/farmstar-survey-backend.git
synced 2025-04-17 18:01:02 +02:00
14 lines
145 B
Go
14 lines
145 B
Go
package router
|
|
|
|
type (
|
|
Opts struct {
|
|
}
|
|
|
|
RouterContainer struct {
|
|
}
|
|
)
|
|
|
|
func NewRouter(o Opts) *RouterContainer {
|
|
return &RouterContainer{}
|
|
}
|