feat: register service.

This commit is contained in:
2021-09-25 20:33:10 +08:00
commit e4c6718e43
11 changed files with 1224 additions and 0 deletions

19
examples/register.ts Normal file
View File

@@ -0,0 +1,19 @@
import { AppConfig, ServiceRegister } from "../src";
const config: AppConfig = {
etcd: {
hosts: "http://rpi:2379",
},
};
const register = new ServiceRegister(config);
register
.register("example.configuration.fennec", "https://ivanli.cc")
.then(() => {
console.log("registered!");
})
.catch((error) => {
console.warn("failed!");
console.error(error);
});