Discover books, shows, and movies at your level. Track your progress by filling your Shelf with what you find, and share with other language learners. *No dusting required.
at master 19 lines 262 B view raw
1package server 2 3import ( 4 "context" 5 6 "shelf.app/internal/config" 7) 8 9type Server struct { 10 config *config.Config 11} 12 13func Make(ctx context.Context, config *config.Config) (*Server, error) { 14 return &Server{}, nil 15} 16 17func (s *Server) Close() error { 18 return nil 19}