1
0
mirror of https://github.com/nikoksr/notify.git synced 2025-07-13 01:30:32 +02:00

feat(service): formatted code

This commit is contained in:
Himanshu Ranjan
2021-05-10 15:56:01 +05:30
parent 88bc19a135
commit c20777bb7c

View File

@ -6,7 +6,7 @@ import (
"strings"
)
// TMagicService allow you to configure a TextMagic SDK client.
//TMagicService allow you to configure a TextMagic SDK client.
type TMagicService struct {
UserName string
APIKey string
@ -14,7 +14,7 @@ type TMagicService struct {
TextMagicAPIClient *tm.APIClient
}
// NewTextMagicClient creates a new text magic client
//NewTextMagicClient creates a new text magic client
func NewTextMagicClient(userName, apiKey string) *TMagicService {
config := tm.NewConfiguration()