mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			237 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			237 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package node
 | 
						|
 | 
						|
import (
 | 
						|
	"context"
 | 
						|
	"github.com/iwind/TeaGo/logs"
 | 
						|
)
 | 
						|
 | 
						|
type Service struct {
 | 
						|
}
 | 
						|
 | 
						|
func (this *Service) Node(context.Context, *NodeRequest) (*NodeResponse, error) {
 | 
						|
	logs.Println("you called me")
 | 
						|
	return &NodeResponse{}, nil
 | 
						|
}
 |