4
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-06-27 15:49:23 +00:00

Add dependencies/vendor (whatsapp)

This commit is contained in:
Wim
2022-01-31 00:27:37 +01:00
parent e7b193788a
commit e3cafeaf92
1074 changed files with 3091569 additions and 26075 deletions

View File

@ -0,0 +1,17 @@
package optional
// NewOptionalUint32 returns an optional Uint32 structure.
func NewOptionalUint32(value uint32) *Uint32 {
return &Uint32{Value: value, IsEmpty: false}
}
func NewEmptyUint32() *Uint32 {
return &Uint32{IsEmpty: true}
}
// Uint32 is a simple structure for Uint32 values that can
// optionally be nil.
type Uint32 struct {
Value uint32
IsEmpty bool
}