Make nsinit package main only
Signed-off-by: Michael Crosby <michael@docker.com>
This commit is contained in:
parent
9378c05c37
commit
51e6049226
|
@ -1,4 +1,4 @@
|
|||
package nsinit
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package nsinit
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package nsinit
|
||||
package main
|
||||
|
||||
import (
|
||||
"log"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package nsinit
|
||||
package main
|
||||
|
||||
import (
|
||||
"log"
|
||||
|
@ -26,7 +26,7 @@ func preload(context *cli.Context) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func NsInit() {
|
||||
func main() {
|
||||
// we need to check our argv 0 for any registred functions to run instead of the
|
||||
// normal cli code path
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package nsinit
|
||||
package main
|
||||
|
||||
import (
|
||||
"log"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package nsinit
|
||||
package main
|
||||
|
||||
import (
|
||||
"log"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package nsinit
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package nsinit
|
||||
package main
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
|
|
Loading…
Reference in New Issue