github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/config/defaults/profile_preload.go (about)

     1  package defaults
     2  
     3  import (
     4  	_ "embed"
     5  )
     6  
     7  //go:embed profile_preload.mx
     8  var profilePreload []byte
     9  
    10  func init() {
    11  	// push to top of slice so it is first profile loaded
    12  	DefaultProfiles = append([]*DefaultProfileT{{
    13  		Name:  "profile_preload",
    14  		Block: profilePreload,
    15  	}}, DefaultProfiles...)
    16  }