Mantis
A comprehensive Go helper library with standalone packages designed to streamline common coding patterns and functionalities.
Overview
Mantis is a collection of helper libraries written to reduce the need to code common patterns and functionality. Subpackages are developed to have zero side effects on the parent application, with helper functions designed to accept, act on, and return data. Mantis serves as the "standard library" for Sphire's Golang codebase, utilized in projects like Sphire Core and Sphire Codex.
package main
import (
"fmt"
"github.com/sphireinc/mantis/date"
)
func main() {
// Utilize the date package from Mantis to get the current time
currentTime := date.CurrentTime()
fmt.Println("Current Time:", currentTime.String())
}
API Definition
Provides utilities for date and time operations, including fetching the current time.
Offers string manipulation functions to simplify common string operations.
Contains helpers for database interactions, supporting various database types.
Includes validation functions to enforce data integrity and business rules.