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

..03-May-2022-

.github/H07-Feb-2021-

.editorconfigH A D07-Feb-2021539

.gitignoreH A D07-Feb-202132

.golangci.ymlH A D07-Feb-2021617

.travis.ymlH A D07-Feb-20211.4 KiB

CODE_OF_CONDUCT.mdH A D07-Feb-20213.2 KiB

LICENSEH A D07-Feb-202111.1 KiB

README.mdH A D07-Feb-20211.1 KiB

convert.goH A D07-Feb-20215.2 KiB

convert_test.goH A D07-Feb-20216.6 KiB

convert_types.goH A D07-Feb-202115.3 KiB

convert_types_test.goH A D07-Feb-202117.7 KiB

doc.goH A D07-Feb-20211.1 KiB

go.modH A D07-Feb-2021618

go.sumH A D07-Feb-20212.5 KiB

json.goH A D07-Feb-20217.8 KiB

json_test.goH A D07-Feb-20217.9 KiB

loading.goH A D07-Feb-20213.6 KiB

loading_test.goH A D07-Feb-20215 KiB

name_lexem.goH A D07-Feb-20211.8 KiB

net.goH A D07-Feb-20211.1 KiB

net_test.goH A D07-Feb-20211.2 KiB

path.goH A D07-Feb-20211.6 KiB

path_test.goH A D07-Feb-20213.3 KiB

post_go18.goH A D07-Feb-2021730

post_go19.goH A D07-Feb-20211.7 KiB

pre_go18.goH A D07-Feb-2021732

pre_go19.goH A D07-Feb-20211.7 KiB

split.goH A D07-Feb-20216.2 KiB

util.goH A D07-Feb-20219.1 KiB

util_test.goH A D07-Feb-202112.7 KiB

yaml.goH A D07-Feb-20215.9 KiB

yaml_test.goH A D07-Feb-202110 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[![Go Report Card](https://goreportcard.com/badge/github.com/go-openapi/swag)](https://goreportcard.com/report/github.com/go-openapi/swag)
6
7Contains a bunch of helper functions for go-openapi and go-swagger projects.
8
9You may also use it standalone for your projects.
10
11* convert between value and pointers for builtin types
12* convert from string to builtin types (wraps strconv)
13* fast json concatenation
14* search in path
15* load from file or http
16* name mangling
17
18
19This repo has only few dependencies outside of the standard library:
20
21* YAML utilities depend on gopkg.in/yaml.v2
22