diff options
author | Teddy Wing | 2023-11-14 00:03:47 +0100 |
---|---|---|
committer | Teddy Wing | 2023-11-14 00:03:47 +0100 |
commit | 424ad8826ac293115d2b503935d8c3c2c76c6800 (patch) | |
tree | 4714c493f91fdf935c69565d34f0c21bd32c4f19 /internal/swextreload.go | |
parent | 2e81f6c88c501a9fb01f5361773c1e6ba69ab226 (diff) | |
download | swextreload-424ad8826ac293115d2b503935d8c3c2c76c6800.tar.bz2 |
Move swextreload.go to internal/
Don't make this a public API. I'd rather do something simple and bad to
get this finished quickly.
Diffstat (limited to 'internal/swextreload.go')
-rw-r--r-- | internal/swextreload.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/swextreload.go b/internal/swextreload.go new file mode 100644 index 0000000..dd3b860 --- /dev/null +++ b/internal/swextreload.go @@ -0,0 +1,8 @@ +package swextreload + +// TODO +type SwextreloadOption = func(*) + +// TODO +func Reload(url string, opts ...SwextreloadOption) error { +} |