A collection of Custom Bluesky Feeds, including Fresh Feeds, all under one roof
at main 214 B view raw
1#!/bin/bash 2 3# Infinite loop to rerun the Go program 4while true; do 5 echo "Starting Go program..." 6 go run indexer.go 7 8 # Exit message 9 echo "Program exited. Restarting in 5 seconds..." 10 sleep 5 11done