Organize imports better

This commit is contained in:
2019-09-26 20:19:57 +02:00
parent e2bdaf6603
commit b4f707da19
11 changed files with 63 additions and 18 deletions

View File

@@ -13,10 +13,10 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
import { users as sql } from "@kredens/db/sql";
import argon2 from "argon2";
import { Maybe, None, Some } from "monet";
import { IDatabase, IMain } from "pg-promise";
import { users as sql } from "../sql";
export class UserRepository {
private db: IDatabase<any>;