func createKustoClient()

in internal/kusto/ingest.go [8:16]


func createKustoClient(
	target KustoTargetOptions,
	auth AuthOptions,
) (*kusto.Client, error) {
	builder := kusto.NewConnectionStringBuilder(target.Endpoint)
	auth.PrepareKustoConnectionStringBuilder(builder)

	return kusto.New(builder)
}