#compdef asd anything-sync-daemon

_asd() {
  local -a options

  options=('p:Preview what asd will do/is doing and printout useful info'
           'c:Clean (delete without prompting) ALL crashrecovery dirs for all sync targets')

  _describe 'options' options
}

_asd
