~bigbes/core-go

ref: e22c3e1cbf3248dc8a1ee87fc1cf469d67bffb82 core-go/cmd/token/main.go -rw-r--r-- 291 bytes
e22c3e1c — Conrad Hoffmann Fix a bunch of linter complaints 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"
	"os"

	"git.sr.ht/~sircmpwn/core-go/auth"
	"git.sr.ht/~sircmpwn/core-go/config"
	"git.sr.ht/~sircmpwn/core-go/crypto"
)

func main() {
	conf := config.LoadConfig()
	crypto.InitCrypto(conf)
	tok := auth.DecodeBearerToken(os.Args[1])
	fmt.Printf("%+v\n", tok)
}