Projects Structure Completed

This commit is contained in:
SowinskiBraeden committed 2021-09-30 12:17:24 -07:00
commit 338f508460
28 files changed
+567

No files matched your search

+39
View File
@@ -0,0 +1,39 @@
package controller
import (
"github.com/gin-gonic/gin"
)
func GetOrderItems() gin.HandlerFunc {
return func(c *gin.Context) {
}
}
func GetOrderItemsByOrder() gin.HandlerFunc {
return func(c *gin.Context) {
}
}
func ItemsByOrder(id string) (OrderItems []primitive.M, err error) {
}
func GetOrderItem() gin.HandlerFunc {
return func(c *gin.Context) {
}
}
func CreateOrderItem() gin.HandlerFunc {
return func(c *gin.Context) {
}
}
func UpdateOrderItem() gin.HandlerFunc {
return func(c *gin.Context) {
}
}