tangled
alpha
login
or
join now
regnault.dev
/
core
forked from
tangled.org/core
0
fork
atom
Monorepo for Tangled
0
fork
atom
overview
issues
pulls
pipelines
auth: move to top level
anirudh.fi
1 year ago
7c179b14
2b321e78
+2
-2
4 changed files
expand all
collapse all
unified
split
auth
auth.go
types.go
cmd
repoguard
main.go
routes
auth.go
+1
-1
cmd/repoguard/main.go
···
12
12
"strings"
13
13
"time"
14
14
15
15
-
"github.com/icyphox/bild/routes/auth"
15
15
+
"github.com/icyphox/bild/auth"
16
16
)
17
17
18
18
var (
+1
-1
routes/auth.go
···
7
7
8
8
comatproto "github.com/bluesky-social/indigo/api/atproto"
9
9
"github.com/bluesky-social/indigo/xrpc"
10
10
-
rauth "github.com/icyphox/bild/routes/auth"
10
10
+
rauth "github.com/icyphox/bild/auth"
11
11
)
12
12
13
13
const (
routes/auth/auth.go
auth/auth.go
routes/auth/types.go
auth/types.go