mirror of
https://github.com/wonli/aqi.git
synced 2025-09-26 12:41:15 +08:00
12 lines
111 B
Go
12 lines
111 B
Go
package aqi
|
|
|
|
type Aqi struct {
|
|
AppConfig *AppConfig
|
|
}
|
|
|
|
func Use() *Aqi {
|
|
return &Aqi{
|
|
AppConfig: acf,
|
|
}
|
|
}
|