package
0.1.94
Repository: https://github.com/tiny-systems/module.git
Documentation: pkg.go.dev

# README

package build

import ( "os" "path" "strings" )

const ( ReadmeFile = "README.md" )

func GetReadme(p string) (string, error) { data, err := os.ReadFile(path.Join(p, ReadmeFile)) if err != nil { return "", err } b := strings.Builder{} b.Write(data) return b.String(), err }

# Functions

No description provided by the author
No description provided by the author
No description provided by the author

# Constants

No description provided by the author

# Structs

No description provided by the author
No description provided by the author