11 lines
276 B
Go
11 lines
276 B
Go
package system
|
|
|
|
// tagSystem groups every system-module operation (info, hostname, time/date,
|
|
// locale, power) under one OpenAPI tag, so tags map 1:1 to modules.
|
|
const tagSystem = "System"
|
|
|
|
var (
|
|
readErrors = []int{401, 403, 500}
|
|
writeErrors = []int{400, 401, 403, 500}
|
|
)
|