github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/integrations/integrations_posix.go (about)

     1  //go:build !windows && !plan9
     2  // +build !windows,!plan9
     3  
     4  package integrations
     5  
     6  import (
     7  	"embed"
     8  )
     9  
    10  //go:embed *_posix.mx
    11  var resPOSIX embed.FS
    12  
    13  func init() {
    14  	resources["*_posix"] = &resPOSIX
    15  }