feat: initialize project structure with frontend dependencies and backend protocols

This commit is contained in:
2026-06-09 11:14:49 +01:00
commit 13848fb227
43 changed files with 4836 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
package keychain
import "github.com/zalando/go-keyring"
const serviceName = "goexplore"
func SetSecret(id string, secret string) error {
key := "goexplore-" + id
return keyring.Set(serviceName, key, secret)
}
func GetSecret(id string) (string, error) {
key := "goexplore-" + id
return keyring.Get(serviceName, key)
}
func DeleteSecret(id string) error {
key := "goexplore-" + id
return keyring.Delete(serviceName, key)
}