github.com/keybase/client/go@v0.0.0-20240309051027-028f7c731f8b/avatars/fileurlize_windows.go (about)

     1  //go:build windows
     2  // +build windows
     3  
     4  package avatars
     5  
     6  import (
     7  	"strings"
     8  )
     9  
    10  func fileUrlize(path string) string {
    11  	return `/` + strings.Replace(path, `\`, `/`, -1)
    12  }