Documentation ¶
Overview ¶
Copyright paskal.maksim@gmail.com Licensed under the Apache License, Version 2.0 (the "License") you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Index ¶
- func ConvertStringToInt64(value string) (int64, error)
- func DiffToNowDays(t time.Time) int
- func DiffToNowHours(t time.Time) int
- func GetTemplatedResult(ctx context.Context, text string, obj interface{}) ([]byte, error)
- func HumanizeDuration(showType HumanizeDurationType, duration time.Duration) string
- func RandomString(l int) string
- func StringToTime(value string) (time.Time, error)
- func TimeToString(t time.Time) string
- func TimeToUnix(t time.Time) string
- func UnixToTime(value string) (time.Time, error)
- type HumanizeDurationType
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ConvertStringToInt64 ¶
func DiffToNowDays ¶ added in v0.4.0
returns days between current time and input time.
func DiffToNowHours ¶ added in v0.4.0
returns hours between current time and input time.
func GetTemplatedResult ¶ added in v0.4.4
func HumanizeDuration ¶ added in v0.4.4
func HumanizeDuration(showType HumanizeDurationType, duration time.Duration) string
func RandomString ¶ added in v0.4.0
func TimeToString ¶ added in v0.3.1
func TimeToUnix ¶ added in v0.4.3
Types ¶
type HumanizeDurationType ¶ added in v0.4.5
type HumanizeDurationType string
const ( HumanizeDurationShort HumanizeDurationType = "short" HumanizeDurationFull HumanizeDurationType = "full" )