booking

package
v1.2.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 17, 2021 License: GPL-3.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ProviderSet = wire.NewSet(NewImpl)

ProviderSet is a provider set for wire

Functions

This section is empty.

Types

type IHandler

type IHandler interface {
	// ListBookings serve caller to list all bookings
	ListBookings(c *gin.Context)

	// GetBookingByID serve caller to get a booking by id
	GetBookingByID(c *gin.Context)

	// Book serve caller to book a car
	Book(c *gin.Context)

	// CancelBooking serve caller to cancel a booking by id
	CancelBooking(c *gin.Context)
}

IHandler declare booking api handler function

func CreateIHandler

func CreateIHandler(logger *zap.Logger, biz order.IBiz) (IHandler, error)

func NewImpl

func NewImpl(logger *zap.Logger, biz order.IBiz) IHandler

NewImpl serve caller to create an IHandler

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL