diff options
author | Teddy Wing | 2023-11-14 00:01:56 +0100 |
---|---|---|
committer | Teddy Wing | 2023-11-14 00:01:56 +0100 |
commit | 2e81f6c88c501a9fb01f5361773c1e6ba69ab226 (patch) | |
tree | ec906a3be47ec6c8b0d717eb9ad16593a7209058 | |
parent | 11810a38f19e86a2b13493566e8ad6b2b00e0d67 (diff) | |
download | swextreload-2e81f6c88c501a9fb01f5361773c1e6ba69ab226.tar.bz2 |
swextreload: Idea for a library API
An idea for a library function to reload an extension.
-rw-r--r-- | swextreload.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/swextreload.go b/swextreload.go new file mode 100644 index 0000000..dd3b860 --- /dev/null +++ b/swextreload.go @@ -0,0 +1,8 @@ +package swextreload + +// TODO +type SwextreloadOption = func(*) + +// TODO +func Reload(url string, opts ...SwextreloadOption) error { +} |