Skip to content
This repository has been archived by the owner on Jan 19, 2021. It is now read-only.

Commit

Permalink
chore: rename to knit
Browse files Browse the repository at this point in the history
Following some team decisions we have decided to rename this project to knit.
  • Loading branch information
fallion committed May 3, 2020
1 parent 95caca4 commit 5b5870a
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This list can be expanded at any point.
Running using https://gobinaries.com/

```sh
curl -sf https://gobinaries.com/aevea/merge-master/cmd/merge-master | sh
curl -sf https://gobinaries.com/aevea/knit/cmd/knit | sh
```


Expand Down
2 changes: 1 addition & 1 deletion api/healthcheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package api
import (
"context"

"github.com/aevea/merge-master/api/generated"
"github.com/aevea/knit/api/generated"
)

type HealthcheckService struct{}
Expand Down
4 changes: 2 additions & 2 deletions api/pullrequests.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"net/http"

"github.com/aevea/merge-master/api/generated"
"github.com/aevea/merge-master/internal/github"
"github.com/aevea/knit/api/generated"
"github.com/aevea/knit/internal/github"
"github.com/hako/durafmt"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/api/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"log"
"net/http"

"github.com/aevea/merge-master/api"
"github.com/aevea/merge-master/api/generated"
cfg "github.com/aevea/merge-master/internal/config"
"github.com/aevea/knit/api"
"github.com/aevea/knit/api/generated"
cfg "github.com/aevea/knit/internal/config"
"github.com/pacedotdev/oto/otohttp"
"github.com/spf13/viper"
"golang.org/x/oauth2"
Expand Down
6 changes: 3 additions & 3 deletions cmd/merge-master/main.go → cmd/knit/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ import (

"golang.org/x/oauth2"

"github.com/aevea/merge-master/internal/github"
"github.com/aevea/knit/internal/github"
"github.com/jedib0t/go-pretty/table"
"github.com/montanaflynn/stats"
"github.com/spf13/cobra"
)

func main() {
rootCmd := &cobra.Command{
Use: "merge-master",
Use: "knit",
Short: "TODO",
Long: "TODO",
RunE: func(cmd *cobra.Command, args []string) error {
fmt.Print("There is no root command. Please check merge-master --help.")
fmt.Print("There is no root command. Please check knit --help.")
return nil
},
SilenceUsage: true,
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/aevea/merge-master
module github.com/aevea/knit

go 1.14

Expand Down
2 changes: 1 addition & 1 deletion mage.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (WebApp) Install() error {

func PublishClient() error {
err := sh.RunV("oto-tools", "generate",
"--package-name", "@aevea/merge-master",
"--package-name", "@aevea/knit",
"--oto-template", "./templates/oto/client.js.plush",
"--oto-definitions", "./api/definitions")

Expand Down

0 comments on commit 5b5870a

Please sign in to comment.