github.com/Pankov404/juju@v0.0.0-20150703034450-be266991dceb/cmd/jujud/main_nix.go (about) 1 // Copyright 2014 Canonical Ltd. 2 // Copyright 2014 Cloudbase Solutions 3 // Licensed under the AGPLv3, see LICENCE file for details. 4 5 // +build !windows 6 7 package main 8 9 import ( 10 "os" 11 12 "github.com/juju/juju/juju/osenv" 13 "github.com/juju/utils/featureflag" 14 ) 15 16 func init() { 17 featureflag.SetFlagsFromEnvironment(osenv.JujuFeatureFlagEnvKey) 18 } 19 20 func main() { 21 Main(os.Args) 22 }