Skip to content

Commit 6630ca5

Browse files
committed
Refactor to StratoAPI
1 parent e3c12c3 commit 6630ca5

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2018 ResourceAPI Team
189+
Copyright 2018 StratoAPI Team
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# REST
22

3-
The REST API module for ResourceAPI/Core
3+
The REST API module for StratoAPI/Core

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
module github.com/ResourceAPI/REST
1+
module github.com/StratoAPI/REST
22

3-
replace github.com/ResourceAPI/Interface v0.0.0 => ../Interface
3+
replace github.com/StratoAPI/Interface v0.0.0 => ../Interface
44

55
require (
6-
github.com/ResourceAPI/Interface v0.0.0
6+
github.com/StratoAPI/Interface v0.0.0
77
github.com/Vilsol/GoLib v0.0.7
88
github.com/gorilla/handlers v1.4.0
99
github.com/gorilla/mux v1.6.2

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package main
22

33
import (
4-
"github.com/ResourceAPI/Interface/plugins"
5-
"github.com/ResourceAPI/REST/server"
4+
"github.com/StratoAPI/Interface/plugins"
5+
"github.com/StratoAPI/REST/server"
66
)
77

88
type RESTPlugin string

nodes/resource.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"io/ioutil"
66
"net/http"
77

8-
"github.com/ResourceAPI/Interface/resource"
9-
"github.com/ResourceAPI/Interface/schema"
8+
"github.com/StratoAPI/Interface/resource"
9+
"github.com/StratoAPI/Interface/schema"
1010
"github.com/Vilsol/GoLib"
1111
"github.com/gorilla/mux"
1212
)

server/facade.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/ResourceAPI/REST/nodes"
8+
"github.com/StratoAPI/REST/nodes"
99
"github.com/Vilsol/GoLib"
1010
"github.com/gorilla/handlers"
1111
"github.com/gorilla/mux"

0 commit comments

Comments
 (0)