(ns *Namespace, settings ApplicationSettings)
| 56 | } |
| 57 | |
| 58 | func NewApplication(ns *Namespace, settings ApplicationSettings) *Application { |
| 59 | return &Application{ |
| 60 | namespace: ns, |
| 61 | Settings: settings, |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | func (a *Application) ContainerName(ctx context.Context) (string, error) { |
| 66 | containers, err := a.namespace.client.ContainerList(ctx, container.ListOptions{All: true}) |
no outgoing calls
searching dependent graphs…