# README
Devingen API Core
Contains models and utilities for other API projects.
Development
Adding this as a local dependency
Add replace
config to go.mod of the other project before require.
replace github.com/devingen/api-core => ../api-core
Releasing a new version
Create a git tag with the desired version and push the tag.
# see tags
git tag --list
# create new tag
git tag -a v0.0.27 -m "change cors handling, convert all headers to lowercase"
# push new tag
git push origin v0.0.27
# Functions
Bool returns a pointer to of the bool value passed in.
BoolValue returns the value of the bool pointer passed in or false if the pointer is nil.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
String returns a pointer to of the string value passed in.
StringValue returns the value of the string pointer passed in or "" if the pointer is nil.
# Structs
No description provided by the author
ProxyRequestContext contains the information to identify the AWS account and resources invoking the Lambda function.
ProxyRequest contains data coming from the API Gateway proxy.
RequestIdentity contains identity information for the request caller.
No description provided by the author
# Type aliases
No description provided by the author