9 lines
326 B
TypeScript
9 lines
326 B
TypeScript
import { sdk } from '../sdk'
|
|
|
|
// YouTube Summarizer needs no special initialization.
|
|
// Directories are created by docker_entrypoint.sh and
|
|
// config is loaded from the persistent volume at runtime.
|
|
export const setup = sdk.setupOnInit(async (effects, kind) => {
|
|
// Nothing to do on install, update, restore, or rebuild.
|
|
})
|