From dc6a141ca1dcb6f8ea130eddc714d4cc872e0496 Mon Sep 17 00:00:00 2001 From: David Allen Date: Mon, 1 Sep 2025 18:57:31 -0600 Subject: [PATCH] chore: minor changes to README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2610cb8..2ce09ce 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Start the server. The `--init` flag with create the default files and directory makeshift serve --root $HOME/apps/makeshift/server --init ``` -From here, you might want to see what files are available by default. +From here, you might want to see what files, plugins, and profiles that are available by default. ```bash # list the files in the root directory @@ -60,7 +60,7 @@ makeshift list profiles makeshift list profiles default ``` -Then, we can start downloading some files or directories (as archives). +Then, we can start downloading some files or directories (as archives) both with and without running plugins. ```bash # download all data (notice --host and --port are not set here) @@ -158,7 +158,7 @@ type Example struct{} func (p *Example) Name() string { return "example" } func (p *Example) Version() string { return "v0.0.1-alpha" } func (p *Example) Description() string { return "An example plugin" } -func (p *Example) Metadata() map[string]string { +func (p *Example) Metadata() map[string]any { return makeshift.Metadata{ "author": map[string]any{ "name": "John Smith",