github.com/taubyte/tau-cli@v0.1.13-0.20240326000942-487f0d57edfc/i18n/website/help.go (about)

     1  package websiteI18n
     2  
     3  import "github.com/pterm/pterm"
     4  
     5  type helper struct{}
     6  
     7  func Help() helper {
     8  	return helper{}
     9  }
    10  
    11  func (helper) BeSureToCloneWebsite() {
    12  	pterm.Info.Printfln("Be sure to clone the website ( $tau clone website )")
    13  }
    14  
    15  func (helper) WebsiteAlreadyCloned(dir string) {
    16  	pterm.Info.Printfln("Website already cloned: %s", dir)
    17  }