tmain.go: add insert time - ags-upload - Insert AGS files to a database
 (HTM) git clone git://src.adamsgaard.dk/ags-upload
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
 (DIR) commit 45a97a4157d52c94b8b58be7d6bc788b7e5f7238
 (DIR) parent d7aff58399bcb2d8e0573c9e027229bb9d0fd3f3
 (HTM) Author: Anders Damsgaard <anders@adamsgaard.dk>
       Date:   Wed,  8 Oct 2025 11:42:05 +0200
       
       main.go: add insert time
       
       Diffstat:
         M cmd/main.go                         |       4 +++-
       
       1 file changed, 3 insertions(+), 1 deletion(-)
       ---
 (DIR) diff --git a/cmd/main.go b/cmd/main.go
       t@@ -10,7 +10,7 @@ import (
                "os"
                "strings"
                "strconv"
       -        //"time"
       +        "time"
        
                "github.com/gin-gonic/gin"
                "gorm.io/driver/postgres"
       t@@ -25,6 +25,7 @@ type CptInfo struct {
                Location   string // PROJ_LOC
                Client     string // PROJ_CLNT
                Contractor string // PROJ_CONT
       +        InsertTime time.Time
        }
        
        type Cpt struct { // group SCPG - data
       t@@ -131,6 +132,7 @@ func ParseAGSProjectAndSCPT(r io.Reader) (*CptInfo, []Cpt, error) {
                                                Location:   get("PROJ", data, "PROJ_LOC"),
                                                Client:     get("PROJ", data, "PROJ_CLNT"),
                                                Contractor: get("PROJ", data, "PROJ_CONT"),
       +                                        InsertTime: time.Now(),
                                        }
        
                                case "SCPT":