UNPKG

carthage

Version:

An API Server and Framework with scaffold functions for node.js

16 lines (8 loc) 226 B
'use strict'; const Carthage = require('carthage'); class IndexController extends Carthage.Controller { get() { this.respond({message: 'Welcome to your Carthage Project'}); } } module.exports = IndexController;