Compare commits
2 commits
e3c8cd1b58
...
e0d9ccb683
Author | SHA1 | Date | |
---|---|---|---|
|
e0d9ccb683 | ||
|
0807a646c0 |
5 changed files with 29 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -21,3 +21,4 @@
|
|||
# Go workspace file
|
||||
go.work
|
||||
|
||||
.idea
|
||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) <year> <copyright holders>
|
||||
Copyright (c) 2022 (30.34) <zordsdavini@arns.lt>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
|
|
9
calendar.go
Normal file
9
calendar.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
package lllaetu_data
|
||||
|
||||
type Day struct {
|
||||
}
|
||||
|
||||
func Today() Day {
|
||||
|
||||
return Day{}
|
||||
}
|
15
calendar_test.go
Normal file
15
calendar_test.go
Normal file
|
@ -0,0 +1,15 @@
|
|||
package lllaetu_data
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"reflect"
|
||||
)
|
||||
import "testing"
|
||||
|
||||
func TestTodayStruct(t *testing.T) {
|
||||
today := Today()
|
||||
s := reflect.ValueOf(&today).Elem()
|
||||
if fmt.Sprint(s.Type()) != "lllaetu_data.Day" {
|
||||
t.Error("Bad structure has been got.")
|
||||
}
|
||||
}
|
3
go.mod
Normal file
3
go.mod
Normal file
|
@ -0,0 +1,3 @@
|
|||
module lllaetu-data
|
||||
|
||||
go 1.18
|
Loading…
Reference in a new issue