mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-16 05:55:33 +00:00
12 lines
151 B
Go
12 lines
151 B
Go
package v2
|
|
|
|
import (
|
|
"github.com/IceWhaleTech/CasaOS/codegen"
|
|
)
|
|
|
|
type CasaOS struct{}
|
|
|
|
func NewCasaOS() codegen.ServerInterface {
|
|
return &CasaOS{}
|
|
}
|