From 776b6fb215559e932d753c36908f6f7f627de39d Mon Sep 17 00:00:00 2001 From: Simon Richardson Date: Wed, 31 Jul 2024 16:32:58 +0100 Subject: [PATCH] feat: expose application getter/setters It's handy to expose the application getters and setters. That way we can work with the interface. --- application.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/application.go b/application.go index 03a0199..ec05046 100644 --- a/application.go +++ b/application.go @@ -67,6 +67,12 @@ type Application interface { CharmManifest() CharmManifest SetCharmManifest(CharmManifestArgs) + CharmActions() CharmActions + SetCharmActions(CharmActionsArgs) + + CharmConfigs() CharmConfigs + SetCharmConfigs(CharmConfigsArgs) + Tools() AgentTools SetTools(AgentToolsArgs)