From 9bdec3379529cd18e001e386289cebbad3afca6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=9E=E3=83=AA=E3=82=A6=E3=82=B9?= Date: Thu, 29 Dec 2022 17:46:59 -0500 Subject: [PATCH] Added Connect func to interface --- system/system.go | 1 + 1 file changed, 1 insertion(+) diff --git a/system/system.go b/system/system.go index e8a49e1..ef5ccb8 100644 --- a/system/system.go +++ b/system/system.go @@ -14,6 +14,7 @@ type System interface { SetConfig(cfg *map[string]interface{}) GetCapabilities() []adapter.Capability + Connect(sysURL string) error Load() error ListPosts() ([]post.Post, error)