Files
StackChan/server/internal/controller/device/device_new.go
T
2026-04-27 10:35:03 +08:00

27 lines
572 B
Go

/*
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
SPDX-License-Identifier: MIT
*/
// =================================================================================
// This is auto-generated by GoFrame CLI tool only once. Fill this file as you wish.
// =================================================================================
package device
import (
"stackChan/api/device"
)
type ControllerV1 struct{}
func NewV1() device.IDeviceV1 {
return &ControllerV1{}
}
type ControllerV2 struct{}
func NewV2() device.IDeviceV2 {
return &ControllerV2{}
}