mirror of
https://github.com/fosrl/pangolin.git
synced 2026-01-28 22:00:51 +00:00
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
import { db, Transaction } from "@server/db";
|
|
|
|
export async function createCertificate(
|
|
domainId: string,
|
|
domain: string,
|
|
trx: Transaction | typeof db
|
|
) {
|
|
return;
|
|
}
|