8 lines
144 B
Go
8 lines
144 B
Go
package handlers
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func GenerateContract(c *fiber.Ctx) error {
|
|
return c.SendString("Generate Contract")
|
|
}
|