all repos — lilp @ 79350fdb3e314f98027dcf353ee03b526f1764c8

incoherent ramblings about process management

main.go

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
package main

import (
	"errors"
	"log"
)

func startProc(p Process) error {
	return errors.New("what")
}

func main() {
	lilpConfig := shittilyParseConfig("./contrib/example-config")
	log.Printf("config: %+v", lilpConfig)
}