moved main from cmd to main.go

This commit is contained in:
2025-11-09 00:51:04 +01:00
parent 15b87e8c36
commit 39307d92e2
4 changed files with 18 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
package main
package cmd
import (
"log"
@@ -18,7 +18,7 @@ type args struct {
Album string `arg:"--album" help:"UUID of a album to upload to"`
}
func main() {
func Run() {
var args args
arg.MustParse(&args)