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
|
||
|
}
|