Skip to content

Commit cf5c564

Browse files
committed
initial commit
1 parent 71d75df commit cf5c564

File tree

3 files changed

+39
-0
lines changed

3 files changed

+39
-0
lines changed

.github/dependabot.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: gomod
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
day: sunday
8+
time: '22:37'

.gitignore

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, built with 'go test -c'
9+
*.test
10+
11+
# Output files, e.g. from the go coverage tool
12+
*.out
13+
14+
# IDE directories
15+
.idea
16+
.vscode
17+
.schemas
18+
.history
19+
20+
# Build and Environment
21+
cmd/app/app
22+
dist/
23+
24+
# Log Files
25+
*.log
26+
27+
# macOS files
28+
*.DS_Store

go.mod

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/MarkRosemaker/errpath
2+
3+
go 1.23.2

0 commit comments

Comments
 (0)