mirror of
https://github.com/ZSCNetSupportDept/scheduler.git
synced 2025-10-28 20:45:05 +08:00
17 lines
189 B
Go
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
|
|
}
|