23 lines
445 B
Go
23 lines
445 B
Go
package api
|
|
|
|
import (
|
|
"github.com/gofiber/fiber/v2"
|
|
)
|
|
|
|
func MapAPIs(app *fiber.App, baseURL string) {
|
|
api := app.Group(baseURL).Name("API")
|
|
{
|
|
wallet := api.Group("/wallet").Name("Wallet API")
|
|
{
|
|
wallet.Post("/me", createWallet)
|
|
wallet.Get("/me", getMyWallet)
|
|
}
|
|
|
|
transaction := api.Group("/transaction").Name("Transaction API")
|
|
{
|
|
transaction.Get("/me", getTransaction)
|
|
transaction.Get("/:id", getTransactionByID)
|
|
}
|
|
}
|
|
}
|