12 lines
275 B
Python
12 lines
275 B
Python
#!/usr/bin/env python3
|
|
"""Secrets are issued in the add-on UI, not from this script."""
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
print(
|
|
"Generate and revoke clients in Firefox: Bookmarks API toolbar → Manage clients.",
|
|
file=sys.stderr,
|
|
)
|
|
raise SystemExit(2)
|