Monorepo for Aesthetic.Computer aesthetic.computer
at main 32 lines 794 B view raw
1#!/usr/bin/env fish 2# 3# ac-login wrapper for fish shell 4# 5 6function ac-login 7 node /workspaces/aesthetic-computer/tezos/ac-login.mjs $argv 8end 9 10function ac-logout 11 node /workspaces/aesthetic-computer/tezos/ac-login.mjs logout 12end 13 14function ac-status 15 node /workspaces/aesthetic-computer/tezos/ac-login.mjs status 16end 17 18function ac-token 19 node /workspaces/aesthetic-computer/tezos/ac-login.mjs token 20end 21 22# Make functions available 23funcsave ac-login >/dev/null 2>&1 24funcsave ac-logout >/dev/null 2>&1 25funcsave ac-status >/dev/null 2>&1 26funcsave ac-token >/dev/null 2>&1 27 28echo "✅ AC authentication functions installed:" 29echo " ac-login - Login to Aesthetic Computer" 30echo " ac-logout - Logout" 31echo " ac-status - Check login status" 32echo " ac-token - Get access token"