mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-21 09:05:10 +00:00
13 lines
255 B
Go
13 lines
255 B
Go
package router
|
|
|
|
import (
|
|
"assetTransfer/internal/api"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// SetupRoutes 设置路由
|
|
func SetupRoutes(r *gin.Engine) {
|
|
// 定义路由
|
|
r.POST("/submit", api.SubmitTransaction)
|
|
r.POST("/evaluate", api.EvaluateTransaction)
|
|
}
|