diff options
author | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-09-10 17:33:30 +0200 |
---|---|---|
committer | Gabriel Arakaki Giovanini <mail@gabrielgio.me> | 2022-09-10 17:33:30 +0200 |
commit | 3451d56ead6e57f503962b876c89284f1fb73a90 (patch) | |
tree | 172599f1f3acd77bc918c55403eb78255ced43e6 /Makefile | |
parent | 544bbeeaf836436305cbed87ae1019511de62535 (diff) | |
download | porg-3451d56ead6e57f503962b876c89284f1fb73a90.tar.gz porg-3451d56ead6e57f503962b876c89284f1fb73a90.tar.bz2 porg-3451d56ead6e57f503962b876c89284f1fb73a90.zip |
ref: Create a storage interface
This `Storage` interface will define all the interactions with the
storage system. For now I plan to support native file system through
go's standard library and Nextcloud through *webdav*. So this is the
first step in that direction.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -8,3 +8,6 @@ build: test: ${GO} test -cover ./... + +install: build + cp porg ${HOME}/.local/bin |