blob: 806f119d1c30ceee5aa5a814062ff52c69a95418 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
const Ice = require("../Ice/ModuleRegistry").Ice;
class Address
{
constructor(host, port)
{
this.host = host;
this.port = port;
}
}
Ice.Address = Address;
module.exports.Ice = Ice;
|