github.com/cloud-foundations/dominator@v0.0.0-20221004181915-6e4fee580046/sub/rpcd/html.go (about)

     1  package rpcd
     2  
     3  import (
     4  	"fmt"
     5  	"io"
     6  )
     7  
     8  func (hw *HtmlWriter) writeHtml(writer io.Writer) {
     9  	fmt.Fprintf(writer, "Image of last successful update: \"%s\"<br>\n",
    10  		*hw.lastSuccessfulImageName)
    11  }