2020-10-10 17:48:18 -04:00

15 lines
227 B
JavaScript

import {startServer} from '../server';
import {scripts} from './scripts';
import {styles} from './styles';
import {views} from './views';
const tasks = {
startServer,
scripts,
styles,
views,
};
export default tasks;