mirror of
https://github.com/Wei-Shaw/sub2api.git
synced 2026-03-30 09:57:12 +00:00
11 lines
130 B
Go
11 lines
130 B
Go
package service
|
|
|
|
import "time"
|
|
|
|
type Setting struct {
|
|
ID int64
|
|
Key string
|
|
Value string
|
|
UpdatedAt time.Time
|
|
}
|