consts centralized

This commit is contained in:
shafi54 2026-05-23 21:05:52 +05:30
parent dfea6814e9
commit 86ff92511e
2 changed files with 6 additions and 0 deletions

View file

@ -0,0 +1,3 @@
export const globalConsts = {
apiUrl: "http://localhost:4004",
} as const;

View file

@ -20,3 +20,6 @@ export type {
// Shared schemas
export * from './schemas/product'
export * from './schemas/stock'
// Global constants
export { globalConsts } from './global-consts'