This commit is contained in:
2026-01-23 12:05:14 +00:00
parent 008cd61a1e
commit e9fb87b26f
2 changed files with 21 additions and 0 deletions

View File

@@ -10,6 +10,8 @@ import (
)
func (store *Store) CompleteSpotifyAuth(ctx *gin.Context) {
print("COMPLETING AUTH")
state := ctx.Query("state")
c := context.Background()
// code := c.Query("code")

View File

@@ -180,6 +180,21 @@ const doc_links = [
link: "https://docs.python.org/3/",
},
];
const article_links = [
{
name: "Go and GORM",
link: "https://medium.com/@chaewonkong/learn-go-understanding-and-implementing-foreign-keys-with-gorm-6d7608e1dbf6",
},
{
name: "JWT Auth in GO",
link: "https://medium.com/monstar-lab-bangladesh-engineering/jwt-auth-in-go-dde432440924",
},
{
name: "Websockets in GO",
link: "https://medium.com/@tanngontn/golang-gin-framework-with-normal-websocket-and-websocket-with-producer-is-rabbitmq-guide-93cad7d290f7",
},
];
</script>
<template>
@@ -196,6 +211,10 @@ const doc_links = [
<ToggleLinkTable title="Job Apps" :linkArr="job_links" />
<ToggleLinkTable title="Social" :linkArr="social_links" />
<ToggleLinkTable title="Other Docs" :linkArr="doc_links" />
<ToggleLinkTable
title="Helpful Articles"
:linkArr="article_links"
/>
</div>
</main>
</template>