refactor(Type)!: harmonize naming 1

This commit is contained in:
2024-10-15 13:12:53 +02:00
parent 7153f2073e
commit 331c1722af
5 changed files with 5 additions and 5 deletions

11
type/types.go Normal file
View File

@@ -0,0 +1,11 @@
package Type
type Optional[T any] struct {
value T
present bool
}
type Result[T any] struct {
value T
err error
}