/** @format */

import Eurekaclient from '../src/index'

const client = new Eurekaclient({
  port: 3000,
  appName: 'huhu',
  services: ['projectx']
})

;(async () => {
  await client.start()
  console.log(client.getHost('projectx', '10.10.95.74', 'miria-29'))
})()
