├── .github ├── renovate.json5 └── workflows │ ├── flake-lock-maintenance.yml │ └── trigger-bump.yml ├── .gitignore ├── LICENSE ├── README.md ├── default.nix ├── flake.lock ├── flake.nix ├── go.mod ├── go.sum ├── gomod2nix.toml ├── main.go ├── shell.nix └── upload └── perkeep /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/flake-lock-maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/.github/workflows/flake-lock-maintenance.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/.github/workflows/trigger-bump.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/flake.nix -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/go.sum -------------------------------------------------------------------------------- /gomod2nix.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/gomod2nix.toml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/main.go -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/shell.nix -------------------------------------------------------------------------------- /upload/perkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/msfjarvis/gphotos-cdp/HEAD/upload/perkeep --------------------------------------------------------------------------------