linstrom/server/server.go

14 lines
257 B
Go
Raw Normal View History

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
}