grim/youtrack-import

Handle comments that end up with no text after processing. This typically happens if it was a reply with the body removed
package globals
type Globals struct {
URL string `kong:"flag,name='url',required=True,help='The URL to the YouTrack server',env='YOUTRACK_URL'"`
Token string `kong:"flag,name='token',required=True,help='The token used to authenticate to the YouTrack server',env='YOUTRACK_TOKEN'"`
ProjectName string `kong:"flag,name='project-name',required=True,help='The name of the project'"`
ProjectID string `kong:"flag,name='project-id',help='The ID of the project'"`
ProjectLeadLogin string `kong:"flag,name='project-lead-login',short='l',help='The login of the leader of this project',default='admin'"`
}