mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
21 lines
424 B
Go
21 lines
424 B
Go
package model
|
|
|
|
// OpsCacheMemcache ops cache mc
|
|
type OpsCacheMemcache struct {
|
|
Labels struct {
|
|
Name string `json:"name"`
|
|
Project string `json:"project"`
|
|
}
|
|
Targets []string `json:"targets"`
|
|
}
|
|
|
|
// OpsCacheRedis ops cache redis
|
|
type OpsCacheRedis struct {
|
|
Labels struct {
|
|
Name string `json:"name"`
|
|
Project string `json:"project"`
|
|
}
|
|
Type string `json:"type"`
|
|
Targets []string `json:"master_targets"`
|
|
}
|