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

+29
View File
@@ -0,0 +1,29 @@
package controller
import (
"github.com/gin-gonic/gin"
)
func GetTables() gin.HandlerFunc {
return func(c *gin.Context) {
}
}
func GetTable() gin.HandlerFunc {
return func(c *gin.Context) {
}
}
func CreateTable() gin.HandlerFunc {
return func(c *gin.Context) {
}
}
func UpdateTable() gin.HandlerFunc {
return func(c *gin.Context) {
}
}