Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Rename tyk-git to tyk-sync
Browse files Browse the repository at this point in the history
  • Loading branch information
buger committed May 22, 2019
1 parent 9561d9a commit 7490794
Show file tree
Hide file tree
Showing 16 changed files with 24 additions and 24 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
tyk-git.exe
tyk-sync.exe
tmp/
pre/
pre/
4 changes: 2 additions & 2 deletions cli-publisher/dashboard.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package cli_publisher

import (
"fmt"
"github.com/TykTechnologies/tyk-git/clients/dashboard"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-sync/clients/dashboard"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/TykTechnologies/tyk/apidef"
)

Expand Down
4 changes: 2 additions & 2 deletions cli-publisher/gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package cli_publisher

import (
"errors"
"github.com/TykTechnologies/tyk-git/clients/gateway"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-sync/clients/gateway"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/TykTechnologies/tyk/apidef"
)

Expand Down
2 changes: 1 addition & 1 deletion cli-publisher/mock.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cli_publisher

import (
"fmt"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/TykTechnologies/tyk/apidef"
)

Expand Down
2 changes: 1 addition & 1 deletion clients/dashboard/apis.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package dashboard

import (
"fmt"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/TykTechnologies/tyk/apidef"
"github.com/levigross/grequests"
"github.com/ongoingio/urljoin"
Expand Down
2 changes: 1 addition & 1 deletion clients/dashboard/certs.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"encoding/json"
"fmt"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/ongoingio/urljoin"
"io"
"io/ioutil"
Expand Down
2 changes: 1 addition & 1 deletion clients/dashboard/policies.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package dashboard

import (
"fmt"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/kataras/go-errors"
"github.com/levigross/grequests"
"github.com/ongoingio/urljoin"
Expand Down
2 changes: 1 addition & 1 deletion clients/gateway/certs.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"crypto/tls"
"encoding/json"
"fmt"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/ongoingio/urljoin"
"io"
"io/ioutil"
Expand Down
2 changes: 1 addition & 1 deletion clients/gateway/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package gateway
import (
"errors"
"fmt"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/TykTechnologies/tyk/apidef"
"github.com/levigross/grequests"
"github.com/ongoingio/urljoin"
Expand Down
2 changes: 1 addition & 1 deletion clients/interfaces/client.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package interfaces

import (
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/TykTechnologies/tyk/apidef"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/dump.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"

"encoding/json"
"github.com/TykTechnologies/tyk-git/clients/dashboard"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-git/tyk-vcs"
"github.com/TykTechnologies/tyk-sync/clients/dashboard"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/TykTechnologies/tyk-sync/tyk-vcs"
"github.com/spf13/cobra"
"io/ioutil"
"os"
Expand Down
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ func init() {
}

var RootCmd = &cobra.Command{
Use: "tyk-git",
Use: "tyk-sync",
Short: "Tyk Git is a tool to integrate Tyk Gateway with Git",
Long: `A tool to use Tyk API Definitions or OAS (Swagger) files stored
in Git (or potentially other VCS) with the Tyk API Management
Expand Down
6 changes: 3 additions & 3 deletions cmd/shared.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package cmd
import (
"errors"
"fmt"
"github.com/TykTechnologies/tyk-git/cli-publisher"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-git/tyk-vcs"
"github.com/TykTechnologies/tyk-sync/cli-publisher"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/TykTechnologies/tyk-sync/tyk-vcs"
"github.com/TykTechnologies/tyk/apidef"
"github.com/spf13/cobra"
"os"
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/TykTechnologies/tyk-git/cmd"
"github.com/TykTechnologies/tyk-sync/cmd"
"os"
)

Expand Down
4 changes: 2 additions & 2 deletions tyk-vcs/getter.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-git/tyk-swagger"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/TykTechnologies/tyk-sync/tyk-swagger"
"github.com/TykTechnologies/tyk/apidef"
"gopkg.in/mgo.v2/bson"
"gopkg.in/src-d/go-billy.v3"
Expand Down
2 changes: 1 addition & 1 deletion tyk-vcs/publisher.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package tyk_vcs

import (
"github.com/TykTechnologies/tyk-git/clients/objects"
"github.com/TykTechnologies/tyk-sync/clients/objects"
"github.com/TykTechnologies/tyk/apidef"
)

Expand Down

0 comments on commit 7490794

Please sign in to comment.