Changed module name

This commit is contained in:
cdricms
2024-04-30 00:58:25 +02:00
parent 0a6792b765
commit d482092764
7 changed files with 7 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ package main
import ( import (
"context" "context"
"git.cems.dev/cdricms/bdooc/proto" "git.cems.dev/cdricms/bdooc/ex1/proto"
"github.com/wailsapp/wails/v2/pkg/runtime" "github.com/wailsapp/wails/v2/pkg/runtime"
) )

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8"/> <meta charset="UTF-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/> <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>bdooc</title> <title>bdooc</title>
<script type="module" crossorigin src="/assets/index.b19f2494.js"></script> <script type="module" crossorigin src="/assets/index.0f93eccd.js"></script>
<link rel="stylesheet" href="/assets/index.9b35c904.css"> <link rel="stylesheet" href="/assets/index.9b35c904.css">
</head> </head>
<body> <body>

View File

@@ -1,4 +1,4 @@
module git.cems.dev/cdricms/bdooc module git.cems.dev/cdricms/bdooc/ex1
go 1.22.2 go 1.22.2

View File

@@ -5,8 +5,8 @@ import (
"encoding/csv" "encoding/csv"
"os" "os"
"git.cems.dev/cdricms/bdooc/parsing" "git.cems.dev/cdricms/bdooc/ex1/parsing"
p "git.cems.dev/cdricms/bdooc/proto" p "git.cems.dev/cdricms/bdooc/ex1/proto"
"github.com/wailsapp/wails/v2" "github.com/wailsapp/wails/v2"
"github.com/wailsapp/wails/v2/pkg/menu" "github.com/wailsapp/wails/v2/pkg/menu"
"github.com/wailsapp/wails/v2/pkg/menu/keys" "github.com/wailsapp/wails/v2/pkg/menu/keys"

View File

@@ -5,7 +5,7 @@ import (
"errors" "errors"
"reflect" "reflect"
"strconv" "strconv"
"git.cems.dev/cdricms/bdooc/proto" "git.cems.dev/cdricms/bdooc/ex1/proto"
) )
func UnmarshalEmployees(reader *csv.Reader) ([]Employee, error) { func UnmarshalEmployees(reader *csv.Reader) ([]Employee, error) {