Randomize adds uuid after a string.
(str string)
| 654 | |
| 655 | // Randomize adds uuid after a string. |
| 656 | func Randomize(str string) string { |
| 657 | return str + "-" + util.GenerateID() |
| 658 | } |
| 659 | |
| 660 | // KillProcess kills the process by name. pkill is used. |
| 661 | func KillProcess(name string, signal syscall.Signal) error { |
no outgoing calls
no test coverage detected
searching dependent graphs…