thinkoner/thinkgo

View on GitHub
session/http.go

Summary

Maintainability
A
0 mins
Test Coverage
package session

type Request interface {
    Cookie(key string, value ...string) (string, error)
}

type Response interface {
    Cookie(name interface{}, params ...interface{}) error
}