mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 19:38:23 +00:00 
			
		
		
		
	* Dropped unused codekit config * Integrated dynamic and static bindata for public * Ignore public bindata * Add a general generate make task * Integrated flexible public assets into web command * Updated vendoring, added all missiong govendor deps * Made the linter happy with the bindata and dynamic code * Moved public bindata definition to modules directory * Ignoring the new bindata path now * Updated to the new public modules import path * Updated public bindata command and drop the new prefix
		
			
				
	
	
		
			23 lines
		
	
	
		
			461 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			461 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package hbase
 | |
| 
 | |
| import (
 | |
| 	"github.com/pingcap/go-hbase/proto"
 | |
| 	pb "github.com/golang/protobuf/proto"
 | |
| )
 | |
| 
 | |
| type CoprocessorServiceCall struct {
 | |
| 	Row          []byte
 | |
| 	ServiceName  string
 | |
| 	MethodName   string
 | |
| 	RequestParam []byte
 | |
| }
 | |
| 
 | |
| func (c *CoprocessorServiceCall) ToProto() pb.Message {
 | |
| 	return &proto.CoprocessorServiceCall{
 | |
| 		Row:         c.Row,
 | |
| 		ServiceName: pb.String(c.ServiceName),
 | |
| 		MethodName:  pb.String(c.MethodName),
 | |
| 		Request:     c.RequestParam,
 | |
| 	}
 | |
| }
 |