Skip to content

Commit

Permalink
Updating namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
madflojo committed Jan 3, 2024
1 parent 523821e commit 1bae35c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion functions/src/data/fetch/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func main() {

// Initialize the Tarmac SDK
f.tarmac, err = sdk.New(sdk.Config{
Namespace: "airport-lookup",
Namespace: "tarmac",
Handler: f.Handler,
})
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion functions/src/data/init/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ func main() {

// Initialize the Tarmac SDK
f.tarmac, err = sdk.New(sdk.Config{
Namespace: "airport-lookup",
Namespace: "tarmac",
Handler: f.Handler,
})
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion functions/src/data/load/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func main() {

// Initialize the Tarmac SDK
f.tarmac, err = sdk.New(sdk.Config{
Namespace: "airport-lookup",
Namespace: "tarmac",
Handler: f.Handler,
})
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion functions/src/handlers/lookup/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func main() {

// Initialize the Tarmac SDK
f.tarmac, err = sdk.New(sdk.Config{
Namespace: "airport-lookup",
Namespace: "tarmac",
Handler: f.Handler,
})
if err != nil {
Expand Down

0 comments on commit 1bae35c

Please sign in to comment.