Skip to content

Commit 1fe5601

Browse files
authored
Merge pull request #151 from sil-org/feature/sil-org
sil-org rename
2 parents bb88a2d + 2b21278 commit 1fe5601

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020-2022 SIL International
3+
Copyright (c) 2020-2025 SIL Global
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/silinternational/serverless-mfa-api-go
1+
module github.com/sil-org/serverless-mfa-api-go
22

33
go 1.24
44

lambda/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import (
1515
"github.com/getsentry/sentry-go"
1616
"github.com/kelseyhightower/envconfig"
1717

18-
mfa "github.com/silinternational/serverless-mfa-api-go"
19-
"github.com/silinternational/serverless-mfa-api-go/router"
18+
mfa "github.com/sil-org/serverless-mfa-api-go"
19+
"github.com/sil-org/serverless-mfa-api-go/router"
2020
)
2121

2222
var envConfig mfa.EnvConfig

router/middleware.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http"
77
"strings"
88

9-
mfa "github.com/silinternational/serverless-mfa-api-go"
9+
mfa "github.com/sil-org/serverless-mfa-api-go"
1010
)
1111

1212
// authenticationMiddleware gets API key information from request headers and validates the key/signature

router/router.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package router
33
import (
44
"net/http"
55

6-
mfa "github.com/silinternational/serverless-mfa-api-go"
6+
mfa "github.com/sil-org/serverless-mfa-api-go"
77
)
88

99
// NewMux forms a new ServeMux router, see https://pkg.go.dev/net/http#ServeMux.

server/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77

88
"github.com/kelseyhightower/envconfig"
99

10-
mfa "github.com/silinternational/serverless-mfa-api-go"
11-
"github.com/silinternational/serverless-mfa-api-go/router"
10+
mfa "github.com/sil-org/serverless-mfa-api-go"
11+
"github.com/sil-org/serverless-mfa-api-go/router"
1212
)
1313

1414
var envConfig mfa.EnvConfig

u2fserver/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"net/http"
66
"os"
77

8-
u2fsim "github.com/silinternational/serverless-mfa-api-go/u2fsimulator"
8+
u2fsim "github.com/sil-org/serverless-mfa-api-go/u2fsimulator"
99
)
1010

1111
func main() {

utils_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"github.com/aws/aws-sdk-go-v2/service/dynamodb"
1919
"github.com/aws/aws-sdk-go-v2/service/dynamodb/types"
2020

21-
u2fsim "github.com/silinternational/serverless-mfa-api-go/u2fsimulator"
21+
u2fsim "github.com/sil-org/serverless-mfa-api-go/u2fsimulator"
2222
)
2323

2424
const localAppID = "http://localhost"

webauthn_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"github.com/go-webauthn/webauthn/webauthn"
2020
"github.com/stretchr/testify/require"
2121

22-
u2fsim "github.com/silinternational/serverless-mfa-api-go/u2fsimulator"
22+
u2fsim "github.com/sil-org/serverless-mfa-api-go/u2fsimulator"
2323
)
2424

2525
// These come from https://github.com/duo-labs/webauthn/blob/23776d77aa561cf1d5cf9f10a65daab336a1d399/protocol/assertion_test.go

0 commit comments

Comments
 (0)