Browse Source

Rename variable

Vova Tkach 5 years ago
parent
commit
8ce32e0791
1 changed files with 2 additions and 2 deletions
  1. 2 2
      main.go

+ 2 - 2
main.go

@@ -10,7 +10,7 @@ import (
 )
 
 func main() {
-	AppFunc := func(ctx context.Context, cancel context.CancelFunc) *[]ctrlc.Iface {
+	MyAppFunc := func(ctx context.Context, cancel context.CancelFunc) *[]ctrlc.Iface {
 		// Some custom logic
 		// With goroutine inside
 		test := Run()
@@ -61,5 +61,5 @@ func main() {
 	}
 
 	// Run application
-	ctrlc.App(8*time.Second, AppFunc)
+	ctrlc.App(8*time.Second, MyAppFunc)
 }