refactor: clean code

This commit is contained in:
Fu Diwei
2024-12-18 10:27:55 +08:00
parent 2374bb56fa
commit d693d26323
17 changed files with 51 additions and 46 deletions

View File

@@ -1,8 +1,6 @@
import { type BaseModel } from "pocketbase";
import { type WorkflowModel } from "./workflow";
import { WorkflowModel } from "./workflow";
export interface CertificateModel extends Omit<BaseModel, "created" | "updated"> {
export interface CertificateModel extends BaseModel {
san: string;
certificate: string;
privateKey: string;