Removing old server

Removing storage drivers
This commit is contained in:
Frederick F. Kautz IV
2015-01-18 13:32:07 -08:00
parent 7c861eec12
commit f550e84cf4
43 changed files with 1 additions and 7864 deletions
-19
View File
@@ -1,19 +0,0 @@
// Package cli provides a minimal framework for creating and organizing command line
// Go applications. cli is designed to be easy to understand and write, the most simple
// cli application can be written as follows:
// func main() {
// cli.NewApp().Run(os.Args)
// }
//
// Of course this application does not do much, so let's make this an actual application:
// func main() {
// app := cli.NewApp()
// app.Name = "greet"
// app.Usage = "say a greeting"
// app.Action = func(c *cli.Context) {
// println("Greetings")
// }
//
// app.Run(os.Args)
// }
package cli