13 строки
217 B
Go
13 строки
217 B
Go
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// Licensed under the Apache v2.0 License.
|
||
|
|
||
|
package network
|
||
|
|
||
|
// Client structure
|
||
|
type BaseClient struct {
|
||
|
}
|
||
|
|
||
|
func New() BaseClient {
|
||
|
return BaseClient{}
|
||
|
}
|