Godeps: add package gin for dashboard

This commit is contained in:
fatedier
2016-05-19 00:26:16 +08:00
parent f404a0a5ee
commit cd59bbdad6
92 changed files with 27129 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
// Use of this source code is governed by a MIT style
// license that can be found in the LICENSE file.
package gin
import "log"
func (c *Context) GetCookie(name string) (string, error) {
log.Println("GetCookie() method is deprecated. Use Cookie() instead.")
return c.Cookie(name)
}