github.com/juju/juju@v0.0.0-20240430160146-1752b71fcf00/core/os/os_unknown.go (about)

     1  // Copyright 2015 Canonical Ltd.
     2  // Licensed under the LGPLv3, see LICENCE file for details.
     3  
     4  //go:build !windows && !darwin && !linux
     5  
     6  package os
     7  
     8  import "github.com/juju/juju/core/os/ostype"
     9  
    10  func hostOS() ostype.OSType {
    11  	return ostype.Unknown
    12  }