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

..03-May-2022-

.github/H30-Oct-2019-11884

.editorconfigH A D30-Oct-2019539 2721

.gitignoreH A D30-Oct-201932 54

.golangci.ymlH A D30-Oct-2019338 2321

.travis.ymlH A D30-Oct-2019992 1615

CODE_OF_CONDUCT.mdH A D30-Oct-20193.2 KiB7556

LICENSEH A D30-Oct-201911.1 KiB203169

README.mdH A D30-Oct-20191.2 KiB2315

convert.goH A D30-Oct-20195.2 KiB209139

convert_test.goH A D30-Oct-20196.5 KiB221178

convert_types.goH A D30-Oct-201912.7 KiB596422

convert_types_test.goH A D30-Oct-201915.5 KiB718576

doc.goH A D30-Oct-20191.1 KiB331

go.modH A D30-Oct-2019508 1712

go.sumH A D30-Oct-20191.7 KiB2120

json.goH A D30-Oct-20197.8 KiB313232

json_test.goH A D30-Oct-20195.8 KiB170119

loading.goH A D30-Oct-20192.3 KiB8153

loading_test.goH A D30-Oct-20191.3 KiB4825

name_lexem.goH A D30-Oct-20191.8 KiB8860

net.goH A D30-Oct-20191.1 KiB3919

net_test.goH A D30-Oct-20191.2 KiB4526

path.goH A D30-Oct-20191.6 KiB6036

path_test.goH A D30-Oct-20193.3 KiB11989

post_go18.goH A D30-Oct-2019730 245

post_go19.goH A D30-Oct-20191.7 KiB6842

pre_go18.goH A D30-Oct-2019732 245

pre_go19.goH A D30-Oct-20191.7 KiB7044

split.goH A D30-Oct-20196.2 KiB263184

util.goH A D30-Oct-20199.1 KiB386283

util_test.goH A D30-Oct-201912.7 KiB493427

yaml.goH A D30-Oct-20195.9 KiB247188

yaml_test.goH A D30-Oct-201911.3 KiB477413

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