~kris/9p

glenda

ref: aa73b6813c196df20b30a5f8094beb4ede55d6d0 glenda/misc.go -rw-r--r-- 235 bytes
aa73b681 — Henesy migrate config to One Big File ;; make a map of a=b values for config ;; rewrite reminders to be a slice 5 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package main

// Miscellaneous utilities for communicating with Mux

import (
	"time"
)

// Service for communicating with Mux (starts once)
func CommMux() {
	for {
		select {
		default:
		}

		time.Sleep(500 * time.Millisecond)
	}
}