14 lines
202 B
Go
14 lines
202 B
Go
package cpa
|
|
|
|
import (
|
|
"ops-assistant/internal/core/ecode"
|
|
)
|
|
|
|
func formatErr(code, msg string) string {
|
|
return ecode.Tag(code, msg)
|
|
}
|
|
|
|
func formatOK(msg string) string {
|
|
return ecode.Tag("OK", msg)
|
|
}
|