summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/executable/executable.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/executable/executable.go b/internal/executable/executable.go
index 108c3ea..c6355b9 100644
--- a/internal/executable/executable.go
+++ b/internal/executable/executable.go
@@ -14,8 +14,8 @@ const (
)
type Executable struct {
- Name string
- RootDir string
+ Name string
+ RootDir string
}
var (
@@ -35,8 +35,8 @@ func New(name string) (*Executable, error) {
}
executable := &Executable{
- Name: name,
- RootDir: rootDir,
+ Name: name,
+ RootDir: rootDir,
}
return executable, nil