about summary refs log tree commit diff stats
path: root/internal/importer/repository.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/importer/repository.go')
-rw-r--r--internal/importer/repository.go44
1 files changed, 0 insertions, 44 deletions
diff --git a/internal/importer/repository.go b/internal/importer/repository.go
deleted file mode 100644
index 6cfd55e..0000000
--- a/internal/importer/repository.go
+++ /dev/null
@@ -1,44 +0,0 @@
-package importer
-
-import (
-	"fmt"
-	"strings"
-)
-
-type RepoType int
-
-const (
-	GitHub = iota + 1
-)
-
-type Repository struct {
-	Type     string `default:"github"`
-	Owner    string
-	Repo     string
-	Revision string
-}
-
-func (f RepoType) String() string {
-	switch f {
-	case GitHub:
-		return "github"
-	default:
-		return fmt.Sprintf("RepoType(%d)", f)
-	}
-}
-
-func parseRepoType(name string) (RepoType, error) {
-	switch strings.ToLower(name) {
-	case "github":
-		return GitHub, nil
-	default:
-		return Unknown, fmt.Errorf("unsupported repo type %s", name)
-	}
-}
-
-func (f *RepoType) UnmarshalText(text []byte) error {
-	var err error
-	*f, err = parseRepoType(string(text))
-
-	return err
-}