File: md5-server_fallback.go

package info (click to toggle)
golang-github-minio-md5-simd 1.1.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bookworm-backports, experimental, forky, sid, trixie
  • size: 292 kB
  • sloc: asm: 1,089; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 332 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
//+build !amd64 appengine !gc noasm

// Copyright (c) 2020 MinIO Inc. All rights reserved.
// Use of this source code is governed by a license that can be
// found in the LICENSE file.

package md5simd

// NewServer - Create new object for parallel processing handling
func NewServer() *fallbackServer {
	return &fallbackServer{}
}