go-service/README.md

20 lines
723 B
Markdown
Raw Normal View History

2013-11-30 07:37:24 +08:00
Go Service!
===========
2013-12-03 07:47:25 +08:00
The go-service library is a channel driver wrapper around os/exec. It
2013-11-30 07:37:24 +08:00
provides an event mechanism for monitoring a process and a command channel for
2013-12-03 07:47:25 +08:00
controlling the process. Think supervisord in a Go library. In fact, the states
and state transitions are identical to Supervisor. As such it is best suited
for managing long running foreground processes.
2013-11-30 07:37:24 +08:00
2013-12-03 07:47:25 +08:00
See the example program for general usage.
2013-11-30 07:37:24 +08:00
License
-------
The go-service library is covered under a BSD style license under copyright of
the authors. See the included LICENSE file for the full license contents.
Authors
-------
The following people are authors of the go-service library:
- Ryan Bourgeois <bluedragonx@gmail.com> (maintainer)