fork
Configure Feed
Select the types of activity you want to include in your feed.
Live video on the AT Protocol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1//go:build linux
2
3package cmd
4
5import (
6 "context"
7
8 "stream.place/streamplace/pkg/config"
9 "stream.place/streamplace/pkg/proc"
10)
11
12func runMist(ctx context.Context, cli *config.CLI) error {
13 if cli.NoMist {
14 <-ctx.Done()
15 return nil
16 }
17 return proc.RunMistServer(ctx, cli)
18}
19
20func Start(build *config.BuildFlags) error {
21 return start(build, []jobFunc{runMist})
22}