blob: d85a5ed511a4295e0138037cc2702a4441a3e82c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// Copyright (C) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
package server
func Do() {
// The Distributor isn't actually needed for Munch to work, the only reason
// that we use it is because it gives us the correct Hub port to connect to.
doHub(doDistributor())
}
|