using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CollabVMClient { public static class Constants { public static string UserVMNodeList => "https://computernewb.com/collab-vm/user-vm/nodelist.json"; public static IConfig DefaultConfig => new IConfig { Nodes = new string[] { "wss://computernewb.com/collab-vm/vm0", "wss://computernewb.com/collab-vm/vm1", "wss://computernewb.com/collab-vm/vm2", "wss://computernewb.com/collab-vm/vm3", "wss://computernewb.com/collab-vm/vm4", "wss://computernewb.com/collab-vm/vm5", "wss://computernewb.com/collab-vm/vm6", "wss://computernewb.com/collab-vm/vm7", "wss://computernewb.com/collab-vm/vm8", } }; } }