mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-08 19:40:24 +08:00
17 lines
273 B
Go
17 lines
273 B
Go
package node
|
|
|
|
import (
|
|
"context"
|
|
"github.com/iwind/TeaGo/logs"
|
|
)
|
|
|
|
type Service struct {
|
|
}
|
|
|
|
func (this *Service) Config(ctx context.Context, req *ConfigRequest) (*ConfigResponse, error) {
|
|
logs.Println("you called me")
|
|
return &ConfigResponse{
|
|
Id: req.NodeId,
|
|
}, nil
|
|
}
|