Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 267 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 267 Bytes

watcher

File system watching and hotreloading

Simple hot reloading for your go application

main.go

package main

import (
	"fmt"

	"github.com/Instantan/watcher"
)

func main() {
	watcher.HotReload()
	fmt.Printf("Started")
	<-make(chan struct{})
}