mirror of https://github.com/webpack/webpack.git
7 lines
102 B
JavaScript
7 lines
102 B
JavaScript
|
import { log } from "./helper";
|
||
|
|
||
|
export default () => {
|
||
|
log("api called");
|
||
|
return "Hello World";
|
||
|
};
|