mirror of
https://git.vectorsigma.ru/public/CasaOS.git
synced 2026-07-29 00:47:37 +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{}
|
|
}
|