mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-23 17:31:11 +01:00
11 lines
252 B
Go
11 lines
252 B
Go
package models
|
|
|
|
import (
|
|
"github.com/crawlab-team/crawlab/core/interfaces"
|
|
"github.com/crawlab-team/crawlab/core/utils/binders"
|
|
)
|
|
|
|
func GetModelColName(id interfaces.ModelId) (colName string) {
|
|
return binders.NewColNameBinder(id).MustBindString()
|
|
}
|