Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 208 Bytes

README.md

File metadata and controls

16 lines (12 loc) · 208 Bytes

pidfile package

Quick Start

	import "github.com/h2object/pidfile"

	// insert into the process begin 
	pid, err := pidfile.New("h2object.pid")
	if err != nil {
		//....
	}
	defer pid.Kill()