Skip to content

Commit

Permalink
Restructure project
Browse files Browse the repository at this point in the history
cluttrdev committed Feb 12, 2023
1 parent d7fc6a5 commit 793a1cd
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion main.go → cmd/deepl/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/cluttrdev/deepl-go/cmd"
"github.com/cluttrdev/deepl-go/pkg/cmd"
)

func main() {
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion cmd/root.go → pkg/cmd/root.go
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ import (

"github.com/spf13/cobra"

"github.com/cluttrdev/deepl-go/pkg/deepl"
deepl "github.com/cluttrdev/deepl-go/pkg/api"
)

var client *deepl.Client
2 changes: 1 addition & 1 deletion cmd/translate.go → pkg/cmd/translate.go
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ import (

"github.com/spf13/cobra"

"github.com/cluttrdev/deepl-go/pkg/deepl"
deepl "github.com/cluttrdev/deepl-go/pkg/api"
)

var (

0 comments on commit 793a1cd

Please sign in to comment.