A simple tool which lets you scrape twitter accounts and crosspost them to bluesky accounts! Comes with a CLI and a webapp for managing profiles! Works with images/videos/link embeds/threads.
at main 6 lines 169 B view raw
1import { type ClassValue, clsx } from 'clsx'; 2import { twMerge } from 'tailwind-merge'; 3 4export function cn(...inputs: ClassValue[]) { 5 return twMerge(clsx(inputs)); 6}