feat: sync
This commit is contained in:
commit
3d25058496
4 changed files with 171 additions and 0 deletions
14
model.go
Normal file
14
model.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
package main
|
||||
|
||||
type Lyrics struct {
|
||||
Metadata map[string]string
|
||||
Timeline []string
|
||||
Content []string
|
||||
}
|
||||
|
||||
const USAGE = `Usage: lyc-cli [command] [options]
|
||||
Commands:
|
||||
sync Synchronize timeline of two lyrics files
|
||||
help Show help`
|
||||
|
||||
const SYNC_USAGE = `Usage: lyc-cli sync <source> <target>`
|
Reference in a new issue