fix: unused code
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
package services
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"github.com/wailsapp/wails/v3/pkg/application"
|
||||
)
|
||||
|
||||
@@ -18,12 +17,3 @@ var ExportedServices = []application.Service{
|
||||
application.NewService(&WorkerService{}),
|
||||
application.NewService(&WorkshopService{}),
|
||||
}
|
||||
|
||||
func CreateServices(items ...any) []application.Service {
|
||||
var services = make([]application.Service, len(items))
|
||||
for i, item := range items {
|
||||
services[i] = application.NewService(&item)
|
||||
}
|
||||
fmt.Printf("%#+v", services)
|
||||
return services
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user