alpha
Login
or
Join now
dunkirk.sh
/
core
forked from
tangled.org/core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
auth: move to top level
author
Anirudh Oppiliappan
date
1 year ago
(Jan 29, 2025, 9:04 AM +0200)
commit
7c179b14
7c179b147e325bb7f25bea2fd19c45d6491b58e9
parent
2b321e78
2b321e782858d59111bddb83208b953e1d2f3ee1
+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
Reviewed
···
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
Reviewed
···
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
Reviewed
routes/auth/types.go
auth/types.go
Reviewed