Generic Commit; Most likely a fix or small feature
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
import type { HomeAssistantEntity } from "@dpu/shared";
|
||||
import { BaseClient } from "@dpu/shared/dist/fastify.js";
|
||||
import { BaseClient, type HomeAssistantEntity } from "@dpu/shared";
|
||||
import { printNetworkError } from "@dpu/shared/dist/logger.js";
|
||||
|
||||
export class HomeAssistantClient extends BaseClient {
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
import type {
|
||||
HomeAssistantDeskPositionResult,
|
||||
HomeAssistantEntity,
|
||||
import {
|
||||
BaseService,
|
||||
type HomeAssistantDeskPositionResult,
|
||||
type HomeAssistantEntity,
|
||||
type ServiceResult,
|
||||
} from "@dpu/shared";
|
||||
import { BaseService, type ServiceResult } from "@dpu/shared/dist/fastify.js";
|
||||
import { logWarning } from "@dpu/shared/dist/logger.js";
|
||||
import { calculateSecondsBetween } from "@dpu/shared/dist/timehelper.js";
|
||||
import { Config } from "../config.js";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { BaseClient } from "@dpu/shared/dist/fastify.js";
|
||||
import { BaseClient } from "@dpu/shared";
|
||||
import { printNetworkError } from "@dpu/shared/dist/logger.js";
|
||||
|
||||
export class TidalClient extends BaseClient {
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
import type { TidalSong, TidalVolume } from "@dpu/shared";
|
||||
import { BaseService, type ServiceResult } from "@dpu/shared/dist/fastify.js";
|
||||
import {
|
||||
BaseService,
|
||||
type ServiceResult,
|
||||
type TidalSong,
|
||||
type TidalVolume,
|
||||
} from "@dpu/shared";
|
||||
import { logWarning } from "@dpu/shared/dist/logger.js";
|
||||
import type { TidalClient } from "./client.js";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user