11 lines
165 B
Go
11 lines
165 B
Go
package server
|
|
|
|
import (
|
|
"git.ctrlz.es/mgdelacroix/birthdaybot/model"
|
|
)
|
|
|
|
type Server struct{}
|
|
|
|
func New(config *model.Config) (*Server, error) {
|
|
return nil, nil
|
|
}
|