From a1ddfeaa9c6eae49351ad1c767870e945db28cfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20Ros=C3=A9n?= Date: Mon, 13 Dec 2021 20:24:41 +0100 Subject: [PATCH] fix(examples): move examples to their own subfolders --- .github/workflows/go.yml | 2 +- examples/{ => devices}/devices.go | 0 examples/{ => static_connect}/static_connect.go | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename examples/{ => devices}/devices.go (100%) rename examples/{ => static_connect}/static_connect.go (100%) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3a8bd00..32595f1 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -23,4 +23,4 @@ jobs: uses: actions/checkout@v2 - name: Build - run: go build -v examples/devices.go + run: go build -v examples/devices/devices.go diff --git a/examples/devices.go b/examples/devices/devices.go similarity index 100% rename from examples/devices.go rename to examples/devices/devices.go diff --git a/examples/static_connect.go b/examples/static_connect/static_connect.go similarity index 100% rename from examples/static_connect.go rename to examples/static_connect/static_connect.go