forked from ebhomengo/niki
1
0
Fork 0
niki/delivery/httpserver/server.go

18 lines
222 B
Go
Raw Permalink Normal View History

2023-12-16 07:20:01 +00:00
package httpserver
import "git.gocasts.ir/ebhomengo/niki/config"
type Server struct {
config config.Config
}
func New(config config.Config) Server {
return Server{
config: config,
}
}
func (s Server) Serve() {
}