Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IstioArt (0.17 sec)

  1. pkg/art/art.go

    // limitations under the License.
    
    package art
    
    import (
    	_ "embed"
    
    	"github.com/fatih/color"
    )
    
    //go:embed istio-ascii.txt
    var istioASCIIArt string
    
    func IstioArt() string {
    	return istioASCIIArt
    }
    
    func IstioColoredArt() string {
    	return color.New(color.FgHiBlue).Add(color.Bold).Sprintf(istioASCIIArt)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 16:30:44 UTC 2024
    - 859 bytes
    - Viewed (0)
Back to top