forked from imbytecat/fullstack-starter
8 lines
108 B
TypeScript
8 lines
108 B
TypeScript
import * as todo from './todo'
|
|
|
|
export const contract = {
|
|
todo,
|
|
}
|
|
|
|
export type Contract = typeof contract
|