This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Files
schisandra-cloud-album/api/api.go
2024-08-12 22:05:59 +08:00

18 lines
384 B
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package api
import (
"schisandra-cloud-album/api/auth_api"
"schisandra-cloud-album/api/captcha_api"
"schisandra-cloud-album/api/sms_api"
)
// Apis 统一导出的api
type Apis struct {
AuthApi auth_api.AuthAPI
CaptchaApi captcha_api.CaptchaAPI
SmsApi sms_api.SmsAPI
}
// Api new函数实例化实例化完成后会返回结构体地指针类型
var Api = new(Apis)