Skip to content

A collection of commonly used data types in API contexts (e.g. email), ensuring correct marshalling, unmarshalling, and validation.

License

Notifications You must be signed in to change notification settings

go-api-libs/types

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Types

Go Reference Go Report Card Code Coverage License: MIT

This library offers a collection of commonly used data types in API contexts, ensuring correct marshalling, unmarshalling, and validation. By standardizing these types across all our API libraries, we aim to reduce redundancy, increase consistency, and enhance type safety.

Features

  • Standardized Types: Tailored for API data interchange
  • Validation: Built-in validation rules to ensure data integrity before processing or transmission.
  • JSON Marshalling/Unmarshalling: Custom JSON handling for each type to handle special cases (e.g., ensuring email addresses are formatted correctly).
  • Used Across go-api-libs: These types are employed by all API libraries within the go-api-libs organization for consistency.

Installation

To install the library, use the following command:

go get github.com/go-api-libs/types

Usage

When using any of the API libraries from the go-api-libs organization, you can trust that types in successful API responses are valid.

Beyond that, here's how you can use some types from this library:

package main

import (
	"fmt"

	"github.com/go-api-libs/types"
)

func main() {
	// Using Email type
	email := types.Email("[email protected]")
	if err := email.Validate(); err != nil {
		fmt.Println(err)
	} else {
		fmt.Println("Valid email address")
	}
}

Contributing

If you have any contributions to make, please submit a pull request or open an issue on the GitHub repository.

License

This project is licensed under the MIT License. See the LICENSE file for details.

About

A collection of commonly used data types in API contexts (e.g. email), ensuring correct marshalling, unmarshalling, and validation.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages