mirror of
				https://github.com/0glabs/0g-chain.git
				synced 2025-11-04 15:27:27 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			426 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			426 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package rest
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/gorilla/mux"
 | 
						|
 | 
						|
	"github.com/cosmos/cosmos-sdk/client/context"
 | 
						|
)
 | 
						|
 | 
						|
// REST Variable names
 | 
						|
const (
 | 
						|
	RestProposalID  = "proposal-id"
 | 
						|
	RestCommitteeID = "committee-id"
 | 
						|
)
 | 
						|
 | 
						|
// RegisterRoutes - Central function to define routes that get registered by the main application
 | 
						|
func RegisterRoutes(cliCtx context.CLIContext, r *mux.Router) {
 | 
						|
	registerQueryRoutes(cliCtx, r)
 | 
						|
	registerTxRoutes(cliCtx, r)
 | 
						|
}
 |