mirror of
https://github.com/strongdm/comply
synced 2024-11-05 07:25:26 +00:00
10 lines
96 B
Go
10 lines
96 B
Go
|
package main
|
||
|
|
||
|
func Mark(ok bool) string {
|
||
|
if ok {
|
||
|
return "✔"
|
||
|
} else {
|
||
|
return "✗"
|
||
|
}
|
||
|
}
|