10 lines
145 B
Go
10 lines
145 B
Go
// SPDX-License-Identifier: EUPL-1.2
|
|
|
|
package lns
|
|
|
|
import "fmt"
|
|
|
|
func ExampleGetServiceName() {
|
|
fmt.Println(GetServiceName())
|
|
// Output: lns
|
|
}
|