File: join.go

package info (click to toggle)
golang-github-go-viper-mapstructure 2.2.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: makefile: 2
file content (9 lines) | stat: -rw-r--r-- 116 bytes parent folder | download
1
2
3
4
5
6
7
8
9
//go:build go1.20

package errors

import "errors"

func Join(errs ...error) error {
	return errors.Join(errs...)
}