You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
267 B
Go
21 lines
267 B
Go
3 years ago
|
/**
|
||
|
* @Author: jager
|
||
|
* @Email: lhj168os@gmail.com
|
||
|
* @File: consts
|
||
|
* @Date: 2021/12/31 5:20 下午
|
||
|
* @package: consts
|
||
|
* @Version: v1.0.0
|
||
|
*
|
||
|
* @Description:
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
package consts
|
||
|
|
||
|
type ApiType int64
|
||
|
|
||
|
const (
|
||
|
Soup ApiType = 1
|
||
|
Weather ApiType = 2
|
||
|
)
|