mirror of
https://github.com/blacktop/ipsw.git
synced 2026-05-08 12:22:26 +00:00
12 lines
339 B
Go
12 lines
339 B
Go
// Package api contains common constants for daemon and client.
|
|
package api
|
|
|
|
// FIXME: this doesn't work with Go 1.24 currently and errors: panic: unsupported version: 2
|
|
////go:generate swagger generate spec -o swagger.json
|
|
|
|
// Common constants for daemon and client.
|
|
const (
|
|
// DefaultVersion of Current REST API
|
|
DefaultVersion = "1"
|
|
)
|