github.com/niedbalski/juju@v0.0.0-20190215020005-8ff100488e47/worker/caasfirewaller/broker.go (about) 1 // Copyright 2017 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package caasfirewaller 5 6 import "github.com/juju/juju/core/application" 7 8 type ServiceExposer interface { 9 ExposeService(appName string, resourceTags map[string]string, config application.ConfigAttributes) error 10 UnexposeService(appName string) error 11 }