Booking trace API

This commit is contained in:
mr
2024-08-21 15:22:13 +02:00
parent c14e067449
commit 4db037afd0
3 changed files with 10 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ const (
BOOKING
)
var defaultAPI = [...]string{
var DefaultAPI = [...]string{
"",
"oc-catalog",
"oc-catalog",
@@ -58,7 +58,7 @@ func FromInt(i int) string {
}
func (d DataType) API() string {
return defaultAPI[d]
return DefaultAPI[d]
}
func (d DataType) String() string {