feat(history): publish sanitized server watermarks

This commit is contained in:
冰朔 2026-08-01 19:27:55 +08:00
commit d40a89d942
7 changed files with 371 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#!/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