Lots of things, mainly models and CSV parser

This commit is contained in:
Miguel de la Cruz 2023-06-30 00:27:38 +02:00
parent d63d1a4513
commit 901b42d801
4 changed files with 147 additions and 1 deletions

View file

@ -1,4 +1,11 @@
package server
type Server struct {
import (
"git.ctrlz.es/mgdelacroix/birthdaybot/model"
)
type Server struct{}
func New(config *model.Config) (*Server, error) {
return nil, nil
}