Skip to content

Commit

Permalink
Renamed sub to app
Browse files Browse the repository at this point in the history
Signed-off-by: Daichi Sakaue <[email protected]>
  • Loading branch information
yokaze committed Oct 24, 2024
1 parent 231b1e1 commit 3b6fecd
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package sub
package app

import (
"bytes"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package sub
package app

import (
"fmt"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package sub
package app

import (
"bytes"
Expand Down
4 changes: 2 additions & 2 deletions cmd/cilium-agent-proxy/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import "github.com/cybozu-go/network-policy-viewer/cmd/cilium-agent-proxy/sub"
import "github.com/cybozu-go/network-policy-viewer/cmd/cilium-agent-proxy/app"

func main() {
sub.Execute()
app.Execute()
}
2 changes: 1 addition & 1 deletion cmd/npv/sub/dump.go → cmd/npv/app/dump.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package sub
package app

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion cmd/npv/sub/helper.go → cmd/npv/app/helper.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package sub
package app

import (
"context"
Expand Down
2 changes: 1 addition & 1 deletion cmd/npv/sub/list.go → cmd/npv/app/list.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package sub
package app

import (
"context"
Expand Down
2 changes: 1 addition & 1 deletion cmd/npv/sub/root.go → cmd/npv/app/root.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package sub
package app

import (
"fmt"
Expand Down
4 changes: 2 additions & 2 deletions cmd/npv/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import "github.com/cybozu-go/network-policy-viewer/cmd/npv/sub"
import "github.com/cybozu-go/network-policy-viewer/cmd/npv/app"

func main() {
sub.Execute()
app.Execute()
}

0 comments on commit 3b6fecd

Please sign in to comment.