mirror of
https://github.com/wassname/talk.git
synced 2026-07-13 17:45:56 +08:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
import path from "path";
|
|
|
|
import { createFluentBundle } from "talk-framework/testHelpers";
|
|
|
|
export default function create() {
|
|
return createFluentBundle(
|
|
"stream",
|
|
path.resolve(__dirname, "../../../../locales/en-US")
|
|
);
|
|
}
|