mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-09 17:01:07 -05:00
This includes a bugfix to the cty/msgpack package to ensure correct decoding of unknown and null values. This also includes updates to cty's dependencies.
Common Functions
This is an open source project for commonly used functions for the Go programming language.
This package need >= go 1.2
Code Convention: based on Go Code Convention.
Contribute
Your contribute is welcome, but you have to check following steps after you added some functions and commit them:
- Make sure you wrote user-friendly comments for all functions .
- Make sure you wrote test cases with any possible condition for all functions in file
*_test.go. - Make sure you wrote benchmarks for all functions in file
*_test.go. - Make sure you wrote useful examples for all functions in file
example_test.go. - Make sure you ran
go testand got PASS .