mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 10:13:01 +00:00
10 lines
108 B
Go
10 lines
108 B
Go
package service
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Service struct {
|
|
Orm *gorm.DB
|
|
Msg string
|
|
MsgID string
|
|
}
|