Files
scheduler/handler/unit/unit_entry.go
2025-05-19 13:41:43 +08:00

17 lines
189 B
Go

package uo
import (
"gorm.io/gorm"
"zsxyww.com/scheduler/database"
)
// Unit Operations
type uoPrototype struct {
c *gorm.DB
}
func init() {
Uo := &uoPrototype{c: db.Main}
_ = Uo
}