mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-23 21:11:02 +08:00
12 lines
292 B
Go
12 lines
292 B
Go
package shell
|
|
|
|
import "yunion.io/x/onecloud/pkg/util/printutils"
|
|
|
|
func printList(data interface{}, total, offset, limit int, columns []string) {
|
|
printutils.PrintInterfaceList(data, total, offset, limit, columns)
|
|
}
|
|
|
|
func printObject(obj interface{}) {
|
|
printutils.PrintInterfaceObject(obj)
|
|
}
|