Categorygithub.com/Instantan/watcher
repositorypackage
0.0.0-20230703184439-ff392fdcc0c3
Repository: https://github.com/instantan/watcher.git
Documentation: pkg.go.dev

# Packages

No description provided by the author

# README

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{})
}