Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
Zest comments added.
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabien Herfray committed Sep 8, 2015
1 parent d33e54d commit 480d0eb
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions zest.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
// Package zest contains a lightweight framework based on the codegangsta/cli package allowing
// clean and easy command line interfaces, the codegangsta/negroni middleware
// handler, and the solher/syringe injector.
//
// Zest encourages the use of small, well chosen individual dependencies
// instead of high productivity, full-stack frameworks.
package zest

import (
Expand All @@ -20,9 +26,8 @@ var Injector = syringe.New()
// SeqFunc is the prototype of the functions present in the exit/init sequences.
type SeqFunc func(z *Zest) error

// Zest is a lightweight framework based on the codegangsta/cli package allowing
// clean and easy command line interfaces, the codegangsta/negroni middleware
// handler, and the solher/syringe injector.
// Zest is an aggregation of well known and efficient package, also providing
// a simple init/exit process to the user.
//
// Init and exit sequences are run following the order of the array, at each
// start/stop of the app, thanks to Cli and the tylerb/graceful module.
Expand Down

0 comments on commit 480d0eb

Please sign in to comment.