chore: disable auto imports (#2672)

* disable auto imports

* fix imports

* improve cli imports

* fix imports

* fix import cycle

* fix imports
This commit is contained in:
Bernd Storath
2026-06-19 15:24:42 +02:00
committed by GitHub
parent e7ea65a898
commit 2af5cd04b4
97 changed files with 473 additions and 65 deletions
@@ -1,5 +1,6 @@
import { eq, sql, or, like, and } from 'drizzle-orm';
import { containsCidr, parseCidr } from 'cidr-tools';
import { client } from './schema';
import type {
ClientCreateFromExistingType,
@@ -7,6 +8,11 @@ import type {
ClientQueryType,
UpdateClientType,
} from './types';
import Database from '#server/utils/Database';
import { nextIP } from '#server/utils/ip';
import type { ID } from '#server/utils/types';
import { wg } from '#server/utils/wgHelper';
import type { DBType } from '#db/sqlite';
import { wgInterface, userConfig } from '#db/schema';