You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package rpc
-
- import (
- "gitlink.org.cn/cloudream/jcs-pub/client/internal/publock"
- clirpc "gitlink.org.cn/cloudream/jcs-pub/common/pkgs/rpc/client"
- )
-
- type Service struct {
- pubLock *publock.PubLock
- }
-
- func NewService(pubLock *publock.PubLock) *Service {
- return &Service{
- pubLock: pubLock,
- }
- }
-
- var _ clirpc.ClientAPI = (*Service)(nil)
|