mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 18:20:50 +00:00
9 lines
90 B
Go
9 lines
90 B
Go
package service
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Service struct {
|
|
Orm *gorm.DB
|
|
Msg string
|
|
}
|