12 lines
283 B
TypeScript
12 lines
283 B
TypeScript
/**
|
|
* Application-wide constants
|
|
*/
|
|
|
|
import type { Language } from './models/types.js';
|
|
|
|
/** Default workflow name when none specified */
|
|
export const DEFAULT_WORKFLOW_NAME = 'default';
|
|
|
|
/** Default language for new installations */
|
|
export const DEFAULT_LANGUAGE: Language = 'en';
|