• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.github/H19-Aug-2019-

.editorconfigH A D19-Aug-2019539

.gitignoreH A D19-Aug-201932

.golangci.ymlH A D19-Aug-2019338

.travis.ymlH A D19-Aug-2019992

CODE_OF_CONDUCT.mdH A D19-Aug-20193.2 KiB

LICENSEH A D19-Aug-201911.1 KiB

README.mdH A D19-Aug-20191.2 KiB

convert.goH A D19-Aug-20195.2 KiB

convert_test.goH A D19-Aug-20196.5 KiB

convert_types.goH A D19-Aug-201912.7 KiB

convert_types_test.goH A D19-Aug-201915.5 KiB

doc.goH A D19-Aug-20191.1 KiB

go.modH A D19-Aug-2019499

go.sumH A D19-Aug-20191.7 KiB

json.goH A D19-Aug-20197.8 KiB

json_test.goH A D19-Aug-20195.8 KiB

loading.goH A D19-Aug-20192.3 KiB

loading_test.goH A D19-Aug-20191.3 KiB

name_lexem.goH A D19-Aug-20191.8 KiB

net.goH A D19-Aug-20191.1 KiB

net_test.goH A D19-Aug-20191.2 KiB

path.goH A D19-Aug-20191.6 KiB

path_test.goH A D19-Aug-20193.3 KiB

post_go18.goH A D19-Aug-2019730

post_go19.goH A D19-Aug-20191.7 KiB

pre_go18.goH A D19-Aug-2019732

pre_go19.goH A D19-Aug-20191.7 KiB

split.goH A D19-Aug-20196.2 KiB

util.goH A D19-Aug-20199.1 KiB

util_test.goH A D19-Aug-201912.7 KiB

yaml.goH A D19-Aug-20195.9 KiB

yaml_test.goH A D19-Aug-201911.3 KiB

README.md

1# Swag [![Build Status](https://travis-ci.org/go-openapi/swag.svg?branch=master)](https://travis-ci.org/go-openapi/swag) [![codecov](https://codecov.io/gh/go-openapi/swag/branch/master/graph/badge.svg)](https://codecov.io/gh/go-openapi/swag) [![Slack Status](https://slackin.goswagger.io/badge.svg)](https://slackin.goswagger.io)
2
3[![license](http://img.shields.io/badge/license-Apache%20v2-orange.svg)](https://raw.githubusercontent.com/go-openapi/swag/master/LICENSE)
4[![GoDoc](https://godoc.org/github.com/go-openapi/swag?status.svg)](http://godoc.org/github.com/go-openapi/swag)
5[![GolangCI](https://golangci.com/badges/github.com/go-openapi/swag.svg)](https://golangci.com)
6[![Go Report Card](https://goreportcard.com/badge/github.com/go-openapi/swag)](https://goreportcard.com/report/github.com/go-openapi/swag)
7
8Contains a bunch of helper functions for go-openapi and go-swagger projects.
9
10You may also use it standalone for your projects.
11
12* convert between value and pointers for builtin types
13* convert from string to builtin types (wraps strconv)
14* fast json concatenation
15* search in path
16* load from file or http
17* name mangling
18
19
20This repo has only few dependencies outside of the standard library:
21
22* YAML utilities depend on gopkg.in/yaml.v2
23