gitlab.com/evatix-go/core@v1.3.55/codestack/FullMethodNameOf.go (about)

     1  package codestack
     2  
     3  func FullMethodNameOf(fullName string) (packageName string) {
     4  	fullMethodNameOf, _, _ := MethodNamePackageName(
     5  		fullName)
     6  
     7  	return fullMethodNameOf
     8  }