Rename the Artist/Image App files to match the app's class name

This commit is contained in:
Oliver 2026-01-26 23:40:55 -07:00
parent 547816701d
commit dc3224fb6a
4 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
// Applications
import { ArtBrowser } from "./apps/ArtBrowser.mjs";
import { ArtistApp } from "./apps/Artist.mjs";
import { ImageApp } from "./apps/Image.mjs";
import { ArtistApp } from "./apps/ArtistApp.mjs";
import { ImageApp } from "./apps/ImageApp.mjs";
// Utils
import { getFile, hashFile, lastModifiedAt, uploadJson } from "./utils/fs.mjs";