sonic-server 1.7.1

Fast, lightweight and schema-less search backend.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Sonic
//
// Fast, lightweight and schema-less search backend
// Copyright: 2019, Nikita Vilunov <nikitaoryol@gmail.com>
// License: Mozilla Public License v2.0 (MPL v2.0)

async function run(search) {
  // Perform a ping
  await search.ping();
}

require("../runner/runner.js")(
  "Ping", run
);