Skip to content

Commit 6989c3d

Browse files
committed
feat: added ErrorCode type
1 parent c0a6ace commit 6989c3d

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/ralvarezdev/tinygo-types
2+
3+
go 1.25.1

types.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package tinygo_types
2+
3+
type (
4+
// ErrorCode is a type for error codes.
5+
ErrorCode uint16
6+
)

0 commit comments

Comments
 (0)