ref: 50d7feaf56dd416212fce0f504ec22f792ed5c06
parent: 140ce3fcceb0d6e8c67be689e797a919489ca721
author: halfwit <michaelmisch1985@gmail.com>
date: Sat Mar 28 08:51:33 PDT 2020
Add go.mod
--- a/client.go
+++ b/client.go
@@ -3,17 +3,17 @@
import (
"log"
// Call our init functions to add our items
- _ "github.com/olmaxmedical/olmax_go/forms"
- _ "github.com/olmaxmedical/olmax_go/forms/doctor"
- _ "github.com/olmaxmedical/olmax_go/forms/patient"
- _ "github.com/olmaxmedical/olmax_go/pages"
- _ "github.com/olmaxmedical/olmax_go/pages/doctor"
- _ "github.com/olmaxmedical/olmax_go/pages/help"
- _ "github.com/olmaxmedical/olmax_go/pages/patient"
- _ "github.com/olmaxmedical/olmax_go/plugins"
+ _ "github.com/olmaxmedical/forms"
+ _ "github.com/olmaxmedical/forms/doctor"
+ _ "github.com/olmaxmedical/forms/patient"
+ _ "github.com/olmaxmedical/pages"
+ _ "github.com/olmaxmedical/pages/doctor"
+ _ "github.com/olmaxmedical/pages/help"
+ _ "github.com/olmaxmedical/pages/patient"
+ _ "github.com/olmaxmedical/plugins"
- "github.com/olmaxmedical/olmax_go/router"
- "github.com/olmaxmedical/olmax_go/session"
+ "github.com/olmaxmedical/router"
+ "github.com/olmaxmedical/session"
)
//go:generate gotext -srclang=en-US update -out=catalog.go -lang=en-US
--- /dev/null
+++ b/go.mod
@@ -1,0 +1,5 @@
+module github.com/olmaxmedical/site
+
+go 1.14
+
+require golang.org/x/text v0.3.2