diff options
| author | Paul Buetow <paul@buetow.org> | 2023-05-22 00:09:51 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2023-05-22 00:09:51 +0300 |
| commit | bb79f9f50a89507fb7db6d1d4c62630e431952f9 (patch) | |
| tree | a52d163f864b0d3a606023a9d0f864c577c30142 /internal/client/client.go | |
| parent | 14e73217895307983ae762cb5ffd29ac45d8d1d1 (diff) | |
move server and client into their own packages
Diffstat (limited to 'internal/client/client.go')
| -rw-r--r-- | internal/client/client.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/internal/client/client.go b/internal/client/client.go new file mode 100644 index 0000000..299623d --- /dev/null +++ b/internal/client/client.go @@ -0,0 +1,10 @@ +package client + +import ( + "context" + + "codeberg.org/snonux/gorum/internal/config" +) + +func Start(ctx context.Context, conf config.Config) { +} |
