#!/bin/sh
set -eu

case "${1:-}" in
  get)
    printf 'username=bingshuo\n'
    printf 'password='
    cat /etc/guanghu/persona-history-publisher.token
    printf '\n'
    ;;
  store|erase)
    ;;
  *)
    exit 64
    ;;
esac
