Skip to content
This repository was archived by the owner on Nov 14, 2024. It is now read-only.

Commit 5eace5e

Browse files
committed
rename doctor -> coder-doctor
1 parent 85d53fc commit 5eace5e

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/cdr/doctor
1+
module github.com/cdr/coder-doctor
22

33
go 1.16
44

internal/checks/checks.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package checks
33
import (
44
"context"
55

6-
"github.com/cdr/doctor/internal/api"
7-
"github.com/cdr/doctor/internal/checks/kubernetes"
6+
"github.com/cdr/coder-doctor/internal/api"
7+
"github.com/cdr/coder-doctor/internal/checks/kubernetes"
88
)
99

1010
var kubernetesChecks = []api.Check{

internal/checks/kubernetes/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/cdr/doctor/internal/api"
7+
"github.com/cdr/coder-doctor/internal/api"
88
)
99

1010
func CheckVersion(ctx context.Context, opts api.CheckOptions) api.CheckResults {

internal/cmd/check/check.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package check
22

33
import (
4-
"github.com/cdr/doctor/internal/cmd/check/kubernetes"
4+
"github.com/cdr/coder-doctor/internal/cmd/check/kubernetes"
55
"github.com/spf13/cobra"
66
)
77

internal/cmd/check/kubernetes/kubernetes.go

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

33
import (
4-
"github.com/cdr/doctor/internal/api"
5-
"github.com/cdr/doctor/internal/checks"
4+
"github.com/cdr/coder-doctor/internal/api"
5+
"github.com/cdr/coder-doctor/internal/checks"
66
"github.com/spf13/cobra"
77

88
"k8s.io/client-go/kubernetes"

internal/cmd/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package cmd
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/cdr/doctor/internal/cmd/check"
7-
"github.com/cdr/doctor/internal/cmd/version"
6+
"github.com/cdr/coder-doctor/internal/cmd/check"
7+
"github.com/cdr/coder-doctor/internal/cmd/version"
88
)
99

1010
func NewDefaultDoctorCommand() *cobra.Command {

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"context"
55

6-
"github.com/cdr/doctor/internal/cmd"
6+
"github.com/cdr/coder-doctor/internal/cmd"
77
)
88

99
func main() {

0 commit comments

Comments
 (0)