This commit is contained in:
2024-07-16 17:18:31 +08:00
parent 6dd80a46ca
commit f9bb041a2e
26 changed files with 1995 additions and 14 deletions

8
rpc.go
View File

@@ -1,9 +1,13 @@
package service
import "git.kumo.work/shama/service/oa"
import (
"git.kumo.work/shama/service/erp"
"git.kumo.work/shama/service/oa"
)
var Rpc = &rpc{}
type rpc struct {
Oa oa.Oa
Oa oa.Oa
Erp erp.Erp
}