15 lines
171 B
Go
15 lines
171 B
Go
|
// +build !debugdb
|
||
|
|
||
|
package debug
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"git.grassecon.net/urdt/ussd/common"
|
||
|
)
|
||
|
|
||
|
|
||
|
func typToString(v common.DataTyp) string {
|
||
|
return fmt.Sprintf("(%d)", v)
|
||
|
}
|