save "create sync group" table in database
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
package cookies
|
||||
|
||||
import "net/http"
|
||||
|
||||
func Expired(name string) http.Cookie {
|
||||
return http.Cookie{
|
||||
Name: name,
|
||||
Path: "/",
|
||||
MaxAge: -1, // expire the cookie
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user