Steven Polley
291cbaabd4
To better support configuration and user friendliness, migrated to cobra based CLI. The source tree structure has also changed to single go module, the server has been renamed hypd and client has been named hyp. The original structure came into being organically, but now that the vision is more complete it's best to make these adjustments now.
11 lines
155 B
Go
11 lines
155 B
Go
/*
|
|
Copyright © 2024 Steven Polley <himself@stevenpolley.net>
|
|
*/
|
|
package main
|
|
|
|
import "deadbeef.codes/steven/hyp/hypd/cmd"
|
|
|
|
func main() {
|
|
cmd.Execute()
|
|
}
|