matterbridge/vendor/github.com/mattermost/mattermost-server/v5/model/builtin.go

10 lines
316 B
Go
Raw Normal View History

2018-02-09 00:11:04 +01:00
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
2020-08-10 00:29:54 +02:00
// See LICENSE.txt for license information.
2018-02-09 00:11:04 +01:00
package model
func NewBool(b bool) *bool { return &b }
func NewInt(n int) *int { return &n }
func NewInt64(n int64) *int64 { return &n }
func NewString(s string) *string { return &s }