935fc33094
More config, moved files, some endpoints (wip), some storage
13 lines
257 B
Go
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
|
|
}
|