12 lines
207 B
Go
12 lines
207 B
Go
|
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()
|
||
|
}
|