Vestmore_GO/server/app/internal/handlers/actions/securities.go

44 lines
1.0 KiB
Go

package actions
import "github.com/iapologizewhenimwrong/Vestmore_GO/utils/basic"
// @Action securities/account
// SecuritiesAccount
// market: string;
// randstr: string;
// sign: string;
// action: string;
// app_market: int64;
// timestamp: int64;
// token: string;
func SecuritiesAccount(ctx *ActionContext[SecuritiesAccountParam]) (resp *basic.Response) {
return resp.Success()
}
// @Action securities/currency
// SecuritiesCurrency
// randstr: string;
// sign: string;
// action: string;
// app_market: int64;
// timestamp: int64;
// token: string;
func SecuritiesCurrency(ctx *ActionContext[SecuritiesCurrencyParam]) (resp *basic.Response) {
return resp.Success()
}
// @Action securities/capital
// SecuritiesCapital
// randstr: string;
// sign: string;
// action: string;
// app_market: int64;
// timestamp: int64;
// token: string;
func SecuritiesCapital(ctx *ActionContext[SecuritiesCapitalParam]) (resp *basic.Response) {
return resp.Success()
}