Files
bsky-social-app/bskylink/src/cache/rule.ts
T
2025-09-02 13:43:44 -07:00

11 lines
252 B
TypeScript

import {type SafelinkRule} from '../db/schema'
export const exampleRule: SafelinkRule = {
id: 1,
eventType: 'addRule',
url: 'https://malicious.example.com/phishing',
pattern: 'domain',
action: 'block',
createdAt: '2024-06-01T12:00:00Z',
}