Storage service and client (#300)

A very rudimentary storage service for archives larger than what can
fit in TPR/CRD resources. The library used allows for using local
files, AWS S3, or other cloud storage APIs. For now only local paths
are set up.

The storage service doesn't know anything about functions or packages;
it can be used for arbitrary archives.

There's no CLI integration yet.
This commit is contained in:
Soam Vasani
2017-08-31 00:44:25 -07:00
committed by GitHub
parent c03f1a6d9c
commit d83c89df69
9 changed files with 555 additions and 9 deletions
+1 -1
View File
@@ -1,2 +1,2 @@
#!/bin/sh
GOOS=linux GOARCH=386 go build -o fetcher .
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o fetcher .