restructuration

This commit is contained in:
pb
2024-07-11 18:25:40 +02:00
parent fba4f9b6cb
commit cd66000bb9
5 changed files with 172 additions and 22 deletions

View File

@@ -0,0 +1,12 @@
package daemons
import "oc-scheduler/models"
type ExecutionManager struct {
Bookings models.ScheduledBooking
}
func (em *ExecutionManager) test(){
em.Bookings.Mu.Lock()
defer em.Bookings.Mu.Unlock()
}