package config // Version stores the current application version const Version = "0.4.0" // Usage stores the general usage information const Usage = `Usage: sub-cli [command] [options] Commands: sync Synchronize timeline of two lyrics files convert Convert lyrics file to another format fmt Format lyrics file help Show help` // SyncUsage stores the usage information for the sync command const SyncUsage = `Usage: sub-cli sync ` // ConvertUsage stores the usage information for the convert command const ConvertUsage = `Usage: sub-cli convert Note: Target format is determined by file extension. Supported formats: .txt Plain text format(No meta/timeline tags, only support as target format) .srt SubRip Subtitle format .lrc LRC format`