Rust workspace with crates for entity types, hashing, database access, ML client (immich-ml compatible), ingest pipeline, clustering, auth, search, CLI, and axum API server. Vite/React UI. SQL migrations. Includes retry/backoff on transient ML API connection errors. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
import { StrictMode } from 'react'
|
|
import { createRoot } from 'react-dom/client'
|
|
import './i18n'
|
|
import './index.css'
|
|
import { App } from './App'
|
|
|
|
createRoot(document.getElementById('root')!).render(
|
|
<StrictMode>
|
|
<App />
|
|
</StrictMode>
|
|
)
|