Issue 27: feature request - Last-Modified header

This commit is contained in:
Chris Lu
2013-07-08 23:38:38 -07:00
parent 53ae13a012
commit cbd9d14cc4
4 changed files with 58 additions and 14 deletions

11
go/weed/volume_test.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import (
"net/http"
"testing"
"time"
)
func TestXYZ(t *testing.T) {
println("Last-Modified", time.Unix(int64(1373273596), 0).UTC().Format(http.TimeFormat))
}