delete survey pkg

This commit is contained in:
Robin Olsen
2026-02-12 20:39:00 +01:00
parent ae13ccfdab
commit da8ab0833e

View File

@@ -1,19 +0,0 @@
package pkg
import (
"context"
"github.com/LazyBachelor/LazyPM/internal/service"
)
type SurveyConfig = service.Config
func Run(ctx context.Context, config SurveyConfig) error {
_, cleanup, err := service.NewServices(ctx, config)
if err != nil {
return err
}
defer cleanup()
return nil
}