Skip to content

Commit

Permalink
Reduce the scope of import in dubregistry.dbcontroller
Browse files Browse the repository at this point in the history
Instead of importing vibe.vibe, do more fine-grained imports.
  • Loading branch information
Geod24 committed Jun 5, 2024
1 parent 081c6aa commit 1c1fedc
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions source/dubregistry/dbcontroller.d
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,22 @@
module dubregistry.dbcontroller;

import dub.semver;

import vibe.core.log;
import vibe.db.mongo.collection;

import std.array;
import std.algorithm;
import std.conv;
import std.datetime.systime;
import std.datetime.timezone;
import std.exception;
//import std.string;
import std.format;
import std.string;
import std.typecons : tuple;
import std.uni;
import vibe.vibe;

import core.time;


class DbController {
Expand Down

0 comments on commit 1c1fedc

Please sign in to comment.