linstrom/server/server.go
mStar aka a person 935fc33094 Uuuh, lots of stuff
More config, moved files, some endpoints (wip), some storage
2024-01-19 10:21:31 +00:00

13 lines
257 B
Go

package server
import (
"github.com/julienschmidt/httprouter"
"gitlab.com/mstarongitlab/linstrom/config"
"gitlab.com/mstarongitlab/linstrom/storage"
)
type Server struct {
Router *httprouter.Router
Storage *storage.Storage
Config *config.Config
}