mirror of
https://gitlab.com/psuapp/psu.git
synced 2024-08-30 18:12:34 +00:00
11 lines
211 B
Go
11 lines
211 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/greenled/portainer-stack-utils/client"
|
||
|
"github.com/greenled/portainer-stack-utils/common"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
common.AccessCmdInitFunc(containerCmd, client.ResourceContainer)
|
||
|
}
|