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() {
|
2023-12-20 15:39:25 +00:00
|
|
|
}
|