package server import ( "context" "shelf.app/internal/config" ) type Server struct { config *config.Config } func Make(ctx context.Context, config *config.Config) (*Server, error) { return &Server{}, nil } func (s *Server) Close() error { return nil }