mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-05 19:15:30 -04:00
15 lines
200 B
TypeScript
15 lines
200 B
TypeScript
import { initBotId } from "botid/client/core";
|
|
|
|
initBotId({
|
|
protect: [
|
|
{
|
|
path: "/contact",
|
|
method: "POST",
|
|
},
|
|
{
|
|
path: "/notes/*",
|
|
method: "POST",
|
|
},
|
|
],
|
|
});
|