summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/main.go b/main.go
new file mode 100644
index 0000000..3f8a165
--- /dev/null
+++ b/main.go
@@ -0,0 +1,21 @@
+package main
+
+import "fmt"
+import "net/http"
+import "github.com/gin-gonic/gin"
+import lesson "git.altafcreator.com/learnsmp.id-backend/modules/subject/lesson"
+
+var albums = []int{}
+
+func main() {
+ fmt.Println("Hello, world!")
+ router := gin.Default()
+ router.GET("/lessons", getAlbums)
+
+ router.Run("localhost:9090")
+}
+
+func getAlbums(c *gin.Context) {
+ c.IndentedJSON(http.StatusOK, albums)
+ lesson.Test()
+}