Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for initMimePlan9 (0.14 sec)

  1. src/mime/type_plan9.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package mime
    
    import (
    	"bufio"
    	"os"
    	"strings"
    )
    
    func init() {
    	osInitMime = initMimePlan9
    }
    
    func initMimePlan9() {
    	for _, filename := range typeFiles {
    		loadMimeFile(filename)
    	}
    }
    
    var typeFiles = []string{
    	"/sys/lib/mimetype",
    }
    
    func initMimeForTests() map[string]string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 15 19:56:08 UTC 2016
    - 1K bytes
    - Viewed (0)
Back to top