all repos — homestead @ 522324c7b7491a359d7a37931bfc2da402d014b0

Code for my website

move goatcounter integration to server-side

Alan Pearce
commit

522324c7b7491a359d7a37931bfc2da402d014b0

parent

6db99a292ad6a3ba7c5fedce1a4337d3ceac78af

1 file changed, 7 insertions(+), 0 deletions(-)

changed files
A internal/stats/counter.go
@@ -0,0 +1,7 @@
+package stats + +import "net/http" + +type Counter interface { + Count(*http.Request) +}