mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
16 lines
241 B
Go
16 lines
241 B
Go
package porder
|
|
|
|
// Config str
|
|
type Config struct {
|
|
ID int64 `json:"id"`
|
|
Tp int8 `json:"type"`
|
|
Name string `json:"name"`
|
|
}
|
|
|
|
const (
|
|
// ConfigTypeIndustry const
|
|
ConfigTypeIndustry = 0
|
|
// ConfigTypeShow const
|
|
ConfigTypeShow = 1
|
|
)
|