[WIP] A simple wake-on-lan service

WOL#

A simple wake-on-lan webapp.

Configuration is read from wol.toml from the current directory.

# wol.toml
binding = "0.0.0.0:3000" # default address

[targets]
# human friendly name = mac address
computer = "01:02:03:04:05:06"
server = "11:12:13:14:15:16"
# compose.yaml
services:
	wol:
		build: https://tangled.org/vielle.dev/wol.git
		ports: ["3000:3000"]
		volumes: ["./wol.toml:/app/wol.toml"]