16 lines
202 B
Go
16 lines
202 B
Go
package api
|
|
|
|
import (
|
|
"cafe/hub"
|
|
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
type Api struct {
|
|
Router *gin.Engine
|
|
Hub hub.Hub
|
|
}
|
|
|
|
type errorResponse struct {
|
|
Error string `json:"error" validate:"required"`
|
|
}
|