code.gitea.io/gitea@v1.22.3/modules/git/signature_gogit.go (about)

     1  // Copyright 2015 The Gogs Authors. All rights reserved.
     2  // Copyright 2019 The Gitea Authors. All rights reserved.
     3  // SPDX-License-Identifier: MIT
     4  
     5  //go:build gogit
     6  
     7  package git
     8  
     9  import (
    10  	"github.com/go-git/go-git/v5/plumbing/object"
    11  )
    12  
    13  // Signature represents the Author or Committer information.
    14  type Signature = object.Signature