mirror of
https://github.com/m5stack/StackChan.git
synced 2026-04-27 19:12:40 +00:00
18 lines
346 B
Go
18 lines
346 B
Go
/*
|
|
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
package user
|
|
|
|
import (
|
|
"context"
|
|
"stackChan/internal/service"
|
|
|
|
"stackChan/api/user/v2"
|
|
)
|
|
|
|
func (c *ControllerV2) Registration(ctx context.Context, req *v2.RegistrationReq) (res *v2.RegistrationRes, err error) {
|
|
return service.Registration(ctx, req)
|
|
}
|