// Package contentmoderator implements the Azure ARM Contentmoderator service API version 1.0. // // You use the API to scan your content as it is generated. Content Moderator then processes your content and sends the // results along with relevant information either back to your systems or to the built-in review tool. You can use this // information to take decisions e.g. take it down, send to human judge, etc. // // When using the API, images need to have a minimum of 128 pixels and a maximum file size of 4MB. // Text can be at most 1024 characters long. // If the content passed to the text API or the image API exceeds the size limits, the API will return an error code // that informs about the issue. package contentmoderator // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. // // Code generated by Microsoft (R) AutoRest Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( "github.com/Azure/go-autorest/autorest" ) // BaseClient is the base client for Contentmoderator. type BaseClient struct { autorest.Client Endpoint string } // New creates an instance of the BaseClient client. func New(endpoint string) BaseClient { return NewWithoutDefaults(endpoint) } // NewWithoutDefaults creates an instance of the BaseClient client. func NewWithoutDefaults(endpoint string) BaseClient { return BaseClient{ Client: autorest.NewClientWithUserAgent(UserAgent()), Endpoint: endpoint, } }