Skip to content

Commit

Permalink
Merge pull request #21 from laverya/update-package-paths-in-readme
Browse files Browse the repository at this point in the history
refer to kubernetes-sigs/yaml and sigs.k8s.io/yaml in readme
  • Loading branch information
k8s-ci-robot authored Jun 8, 2019
2 parents 68106da + ca78b81 commit a1a8390
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# YAML marshaling and unmarshaling support for Go

[![Build Status](https://travis-ci.org/ghodss/yaml.svg)](https://travis-ci.org/ghodss/yaml)
[![Build Status](https://travis-ci.org/kubernetes-sigs/yaml.svg)](https://travis-ci.org/kubernetes-sigs/yaml)

kubernetes-sigs/yaml is a permanent fork of [ghodss/yaml](https://github.com/ghodss/yaml).

## Introduction

Expand Down Expand Up @@ -32,13 +34,13 @@ GOOD:
To install, run:

```
$ go get github.com/ghodss/yaml
$ go get sigs.k8s.io/yaml
```

And import using:

```
import "github.com/ghodss/yaml"
import "sigs.k8s.io/yaml"
```

Usage is very similar to the JSON library:
Expand All @@ -49,7 +51,7 @@ package main
import (
"fmt"

"github.com/ghodss/yaml"
"sigs.k8s.io/yaml"
)

type Person struct {
Expand Down Expand Up @@ -93,7 +95,7 @@ package main
import (
"fmt"

"github.com/ghodss/yaml"
"sigs.k8s.io/yaml"
)

func main() {
Expand Down

0 comments on commit a1a8390

Please sign in to comment.