mirror of
https://github.com/onepanelio/onepanel.git
synced 2025-10-08 15:10:06 +08:00
10 lines
219 B
Go
10 lines
219 B
Go
package manager
|
|
|
|
import (
|
|
"github.com/onepanelio/core/model"
|
|
)
|
|
|
|
func (r *ResourceManager) ListNamespaces(opts model.ListOptions) (namespaces []*model.Namespace, err error) {
|
|
return r.kubeClient.ListNamespaces(opts)
|
|
}
|