Skip to content

Commit 9ccdf2a

Browse files
committed
move to OpenFogStack org
1 parent 1c17cf1 commit 9ccdf2a

File tree

10 files changed

+20
-14
lines changed

10 files changed

+20
-14
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PROJECT_NAME := "tinyFaaS"
2-
PKG := "github.com/pfandzelter/$(PROJECT_NAME)"
2+
PKG := "github.com/OpenFogStack/$(PROJECT_NAME)"
33
GO_FILES := $(shell find . -name '*.go' | grep -v /vendor/ | grep -v /ext/ | grep -v _test.go)
44

55
.PHONY: all build start clean

cmd/manager/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"os/signal"
1212
"strconv"
1313

14+
"github.com/OpenFogStack/tinyFaaS/pkg/manager"
1415
"github.com/google/uuid"
15-
"github.com/pfandzelter/tinyFaaS/pkg/manager"
1616
)
1717

1818
const (

cmd/rproxy/main.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import (
99
"os"
1010
"strings"
1111

12-
"github.com/pfandzelter/tinyFaaS/pkg/coap"
13-
"github.com/pfandzelter/tinyFaaS/pkg/grpc"
14-
tfhttp "github.com/pfandzelter/tinyFaaS/pkg/http"
15-
"github.com/pfandzelter/tinyFaaS/pkg/rproxy"
12+
"github.com/OpenFogStack/tinyFaaS/pkg/coap"
13+
"github.com/OpenFogStack/tinyFaaS/pkg/grpc"
14+
tfhttp "github.com/OpenFogStack/tinyFaaS/pkg/http"
15+
"github.com/OpenFogStack/tinyFaaS/pkg/rproxy"
1616
)
1717

1818
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/pfandzelter/tinyFaaS
1+
module github.com/OpenFogStack/tinyFaaS
22

33
go 1.20
44

pkg/coap/coap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"log"
55
"net"
66

7+
"github.com/OpenFogStack/tinyFaaS/pkg/rproxy"
78
"github.com/pfandzelter/go-coap"
8-
"github.com/pfandzelter/tinyFaaS/pkg/rproxy"
99
)
1010

1111
func Start(r *rproxy.RProxy, listenAddr string) {

pkg/docker/handler.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ import (
1212
"sync"
1313
"time"
1414

15+
"github.com/OpenFogStack/tinyFaaS/pkg/util"
1516
"github.com/docker/docker/api/types"
1617
"github.com/docker/docker/api/types/container"
1718
"github.com/docker/docker/client"
1819
"github.com/docker/docker/pkg/archive"
1920
"github.com/google/uuid"
20-
"github.com/pfandzelter/tinyFaaS/pkg/util"
2121
)
2222

2323
const (

pkg/grpc/grpc.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"log"
77
"net"
88

9-
"github.com/pfandzelter/tinyFaaS/pkg/grpc/tinyfaas"
10-
"github.com/pfandzelter/tinyFaaS/pkg/rproxy"
9+
"github.com/OpenFogStack/tinyFaaS/pkg/grpc/tinyfaas"
10+
"github.com/OpenFogStack/tinyFaaS/pkg/rproxy"
1111
"google.golang.org/grpc"
1212
)
1313

pkg/http/http.go

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

8-
"github.com/pfandzelter/tinyFaaS/pkg/rproxy"
8+
"github.com/OpenFogStack/tinyFaaS/pkg/rproxy"
99
)
1010

1111
func Start(r *rproxy.RProxy, listenAddr string) {

pkg/manager/manager.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ import (
1313
"path"
1414
"sync"
1515

16+
"github.com/OpenFogStack/tinyFaaS/pkg/docker"
17+
"github.com/OpenFogStack/tinyFaaS/pkg/util"
1618
"github.com/google/uuid"
17-
"github.com/pfandzelter/tinyFaaS/pkg/docker"
18-
"github.com/pfandzelter/tinyFaaS/pkg/util"
1919
)
2020

2121
const (

test/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.PHONY: all test
2+
3+
all: test
4+
5+
test: test_all.py
6+
@python3 test_all.py

0 commit comments

Comments
 (0)