This repository has been archived on 2025-02-15. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
lrc-cli/model.go
2024-08-11 09:50:31 +08:00

14 lines
290 B
Go

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>`