Giter Club home page Giter Club logo

go-submodules-example's Introduction

Go Submodules Example

# create repo
mkdir go-submodules-example
cd go-submodules-example
git init
hub create

# root module
go mod init github.com/veggiemonk/go-submodules-example
git add go.mod
git commit -m "Initial commit"
git push -u origin master

# create a function
mkdir func1
cd func1
cat <<EOF > func1.go
package func1

import (
  "fmt"
  "net/http"

  "github.com/openfaas-incubator/go-function-sdk"
)

// Handle a function invocation
func Handle(req handler.Request) (handler.Response, error) {
  var err error

  message := fmt.Sprintf(">> func1 says: %s", string(req.Body))

  return handler.Response{
    Body:       []byte(message),
    StatusCode: http.StatusOK,
  }, err
}

EOF

# create the module
go mod init github.com/veggiemonk/go-submodules-example/func1
cd ..

# push changes
git add func1
git commit -m 'Add submodule func1'
git push

# tag the module
git tag func1/v0.1.1
git push origin func1/v0.1.1


# create a function
mkdir func1
cd func1
cat <<EOF > func2.go
package func2

import (
  "fmt"
  "net/http"

  "github.com/openfaas-incubator/go-function-sdk"
)

// Handle a function invocation
func Handle(req handler.Request) (handler.Response, error) {
  var err error

  message := fmt.Sprintf(">> func2 says: %s", string(req.Body))

  return handler.Response{
    Body:       []byte(message),
    StatusCode: http.StatusOK,
  }, err
}

EOF

# create the module
go mod init github.com/veggiemonk/go-submodules-example/func2
cd ..


# push changes
git add func2
git commit -m 'Add submodule func1'
git push
# tag release
git tag func2/v0.1.1
git push origin func2/v0.1.1

In case of cache problem: go clean -modcache

go-submodules-example's People

Contributors

veggiemonk avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.