Skip to content

Commit

Permalink
*: update repo username and switch to go modules
Browse files Browse the repository at this point in the history
  • Loading branch information
igolaizola committed Sep 26, 2019
1 parent 1a8f648 commit 2556048
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 119 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sudo: required
language: go
go_import_path: github.com/igarciaolaizola/h2-stream
go_import_path: github.com/igolaizola/h2-stream
go:
- 1.11.x
deploy:
Expand Down
74 changes: 0 additions & 74 deletions Gopkg.lock

This file was deleted.

37 changes: 0 additions & 37 deletions Gopkg.toml

This file was deleted.

8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![GitHub release](https://img.shields.io/github/release/igarciaolaizola/h2-stream.svg)](https://github.com/igarciaolaizola/h2-stream/releases)
[![Build Status](https://travis-ci.com/igarciaolaizola/h2-stream.svg?branch=master)](https://travis-ci.com/igarciaolaizola/h2-stream)
[![Go Report Card](https://goreportcard.com/badge/igarciaolaizola/h2-stream)](http://goreportcard.com/report/igarciaolaizola/h2-stream)
[![license](https://img.shields.io/github/license/igarciaolaizola/h2-stream.svg)](https://github.com/igarciaolaizola/h2-stream/blob/master/LICENSE.md)
[![GitHub release](https://img.shields.io/github/release/igolaizola/h2-stream.svg)](https://github.com/igolaizola/h2-stream/releases)
[![Build Status](https://travis-ci.com/igolaizola/h2-stream.svg?branch=master)](https://travis-ci.com/igolaizola/h2-stream)
[![Go Report Card](https://goreportcard.com/badge/igolaizola/h2-stream)](http://goreportcard.com/report/igolaizola/h2-stream)
[![license](https://img.shields.io/github/license/igolaizola/h2-stream.svg)](https://github.com/igolaizola/h2-stream/blob/master/LICENSE.md)

# h2-stream

Expand Down
2 changes: 1 addition & 1 deletion cmd/h2-stream/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"log"

"github.com/igarciaolaizola/h2-stream/internal/cli"
"github.com/igolaizola/h2-stream/internal/cli"
)

func main() {
Expand Down
11 changes: 11 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module github.com/igolaizola/h2-stream

go 1.13

require (
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/spf13/cobra v0.0.3
github.com/spf13/pflag v1.0.1 // indirect
golang.org/x/net v0.0.0-20180801234040-f4c29de78a2a
golang.org/x/text v0.3.0 // indirect
)
10 changes: 10 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM=
github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
github.com/spf13/cobra v0.0.3 h1:ZlrZ4XsMRm04Fr5pSFxBgfND2EBVa1nLpiy1stUsX/8=
github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ=
github.com/spf13/pflag v1.0.1 h1:aCvUg6QPl3ibpQUxyLkrEkCHtPqYJL4x9AuhqVqFis4=
github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
golang.org/x/net v0.0.0-20180801234040-f4c29de78a2a h1:8fCF9zjAir2SP3N+axz9xs+0r4V8dqPzqsWO10t8zoo=
golang.org/x/net v0.0.0-20180801234040-f4c29de78a2a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
4 changes: 2 additions & 2 deletions internal/cli/cli.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cli

import (
"github.com/igarciaolaizola/h2-stream/internal/client"
"github.com/igarciaolaizola/h2-stream/internal/server"
"github.com/igolaizola/h2-stream/internal/client"
"github.com/igolaizola/h2-stream/internal/server"
"github.com/spf13/cobra"
)

Expand Down

0 comments on commit 2556048

Please sign in to comment.