From 7c179b147e325bb7f25bea2fd19c45d6491b58e9 Mon Sep 17 00:00:00 2001 From: Anirudh Oppiliappan Date: Wed, 29 Jan 2025 09:04:52 +0200 Subject: [PATCH] auth: move to top level --- {routes/auth => auth}/auth.go | 0 {routes/auth => auth}/types.go | 0 cmd/repoguard/main.go | 2 +- routes/auth.go | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename {routes/auth => auth}/auth.go (100%) rename {routes/auth => auth}/types.go (100%) diff --git a/routes/auth/auth.go b/auth/auth.go similarity index 100% rename from routes/auth/auth.go rename to auth/auth.go diff --git a/routes/auth/types.go b/auth/types.go similarity index 100% rename from routes/auth/types.go rename to auth/types.go diff --git a/cmd/repoguard/main.go b/cmd/repoguard/main.go index f780eb6..64ca076 100644 --- a/cmd/repoguard/main.go +++ b/cmd/repoguard/main.go @@ -12,7 +12,7 @@ import ( "strings" "time" - "github.com/icyphox/bild/routes/auth" + "github.com/icyphox/bild/auth" ) var ( diff --git a/routes/auth.go b/routes/auth.go index 242f59a..70298cf 100644 --- a/routes/auth.go +++ b/routes/auth.go @@ -7,7 +7,7 @@ import ( comatproto "github.com/bluesky-social/indigo/api/atproto" "github.com/bluesky-social/indigo/xrpc" - rauth "github.com/icyphox/bild/routes/auth" + rauth "github.com/icyphox/bild/auth" ) const ( -- 2.51.2