about summary refs log tree commit diff
path: root/bskylink/src/cache/rule.ts
blob: 25d2f9f867d173a552d707447c9a1c9d56e69557 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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',
}