Files
袁智鸿 1349df2d68 feat(server): deliver major backend expansion with v2 APIs, AI integration, and realtime infrastructure
- introduce broad v2 API surface across device, user, dance, and stackchandevice modules
- add admin/appstore management flows and strengthen service/controller layering
- implement XiaoZhi integration end-to-end, including token, refresh, license, and agent-related models/services
- expand social and media capabilities with pano support, post/comment workflow updates, and bundled dance music assets
- add websocket task pipeline and refactor realtime communication models/handlers
- enhance middleware, cron bootstrap, DAO/model coverage, and configuration/deployment manifests for production readiness
- add RSA utility support and update project documentation/config scaffolding
2026-04-28 11:09:39 +08:00

23 lines
782 B
Go

/*
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
SPDX-License-Identifier: MIT
*/
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package xiaozhi
import (
"context"
"stackChan/api/xiaozhi/v1"
)
type IXiaozhiV1 interface {
GetXiaoZhiToken(ctx context.Context, req *v1.GetXiaoZhiTokenReq) (res *v1.GetXiaoZhiTokenRes, err error)
RefreshToken(ctx context.Context, req *v1.RefreshTokenReq) (res *v1.RefreshTokenRes, err error)
GetXiaoZhiGenerateLicenseToken(ctx context.Context, req *v1.GetXiaoZhiGenerateLicenseTokenReq) (res *v1.GetXiaoZhiGenerateLicenseTokenRes, err error)
}