• This project
    • Loading...
  • Sign in

ncov / back

Itomix
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Snippets
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • back
  • server
  • cron
  • alive.js
  • lintry's avatar
    init · 762bf570
    762bf570
    lintry authored 2020-01-28 16:17:32 +0800
alive.js 231 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
/**
 * Created by lintry on 18/12/20.
 */
"use strict";
/**
 * 心跳检查
 */
const Result = require('kml-express-stage-lib').Result;

module.exports = async (cfg) => {
    return Result.Ok(`I am alive! from ${process.pid}`);
};