Commit 910e5b9f authored by Patrick Bajao's avatar Patrick Bajao

Add code comments to destination packages

As part of the effort to improve readability of upload in workhorse
codebase, code comments were added to explain what each package is
designed for.
parent 89f6754d
// The destination package handles uploading to a specific destination (delegates
// to filestore or objectstore packages) based on options from the pre-authorization
// API and finalizing the upload.
package destination
import (
......
// The filestore package has a consumer specific to uploading to local disk storage.
package filestore
import (
......
// The objectstore package consists of a number of consumers specific to uploading
// to object storage providers that are S3 compatible (e.g. AWS S3, GCP, Azure).
package objectstore
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment