mirror of
https://github.com/celogeek/piwigo-cli.git
synced 2025-05-25 10:12:37 +02:00
26 lines
553 B
Go
26 lines
553 B
Go
// Copyright 2011 Celogeek. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
//
|
|
// Piwigo Cli
|
|
//
|
|
// This tools allow you to interact with your Piwigo Instance.
|
|
// Installation:
|
|
// go get github.com/celogeek/piwigo-cli/cmd/piwigo-cli
|
|
//
|
|
// Help
|
|
//
|
|
// To get help:
|
|
// piwigo-cli -h
|
|
//
|
|
// QuickStart
|
|
//
|
|
// Login
|
|
//
|
|
// First connect to your instance:
|
|
// piwigo-cli session login -u URL -l USER -p PASSWORD
|
|
//
|
|
// Then check your status
|
|
// piwigo-cli session status
|
|
package main
|