14 lines
189 B
Go
14 lines
189 B
Go
/*
|
|
DESCRIPTION:
|
|
A sample, part of the package that contains functions.
|
|
*/
|
|
package base
|
|
|
|
import (
|
|
"strings"
|
|
)
|
|
|
|
func (b *Basic) ExtractName() []string {
|
|
return strings.Split(b.Name, " ")
|
|
}
|