server: Fix missing .js import for request_interface

This commit is contained in:
Elian Doran 2024-07-24 20:24:47 +03:00
parent ed0970b33b
commit 3595ace249
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import utils from "./utils.js";
import log from "./log.js";
import url from "url";
import syncOptions from "./sync_options.js";
import { ExecOpts } from './request_interface';
import { ExecOpts } from './request_interface.js';
// this service provides abstraction over node's HTTP/HTTPS and electron net.client APIs
// this allows supporting system proxy

View File

@ -18,7 +18,7 @@ import entityChangesService from "./entity_changes.js";
import entityConstructor from "../becca/entity_constructor.js";
import becca from "../becca/becca.js";
import { EntityChange, EntityChangeRecord, EntityRow } from './entity_changes_interface.js';
import { CookieJar, ExecOpts } from './request_interface';
import { CookieJar, ExecOpts } from './request_interface.js';
import setupService from "./setup.js";
import consistency_checks from "./consistency_checks.js";
import becca_loader from "../becca/becca_loader.js";