initial commit

This commit is contained in:
2021-07-26 14:52:36 +02:00
commit 48eea73833
9 changed files with 690 additions and 0 deletions

13
cmd/s3Browser.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import s3browser "git.kapelle.org/niklas/s3browser/internal"
func main() {
s3browser.Start(s3browser.AppConfig{
S3Endoint: "localhost:9000",
S3SSL: false,
S3AccessKey: "testo",
S3SecretKey: "testotesto",
S3Buket: "dev",
})
}