1
0
mirror of https://github.com/strongdm/comply synced 2024-07-05 16:21:46 +00:00
comply/vendor/github.com/aktau/github-release/term.go
2019-07-14 13:51:10 -03:00

10 lines
96 B
Go

package main
func Mark(ok bool) string {
if ok {
return "✔"
} else {
return "✗"
}
}