github.com/secoba/wails/v2@v2.6.4/internal/goversion/build_constraint.go (about)

     1  //go:build !go1.18
     2  // +build !go1.18
     3  
     4  package goversion
     5  
     6  const MinGoVersionRequired = "You need Go " + MinRequirement + " or newer to compile this program"
     7  
     8  func init() {
     9  	MinGoVersionRequired
    10  }