github.com/boki/go-xmp@v1.0.1/models/import.go (about)

     1  // Copyright (c) 2017-2018 Alexander Eichhorn
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License"): you may
     4  // not use this file except in compliance with the License. You may obtain
     5  // a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
    11  // WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
    12  // License for the specific language governing permissions and limitations
    13  // under the License.
    14  
    15  package models
    16  
    17  // register all metadata models
    18  import (
    19  	_ "trimmer.io/go-xmp/models/cc"
    20  	_ "trimmer.io/go-xmp/models/crs"
    21  	_ "trimmer.io/go-xmp/models/dc"
    22  	_ "trimmer.io/go-xmp/models/dji"
    23  	_ "trimmer.io/go-xmp/models/exif"
    24  	_ "trimmer.io/go-xmp/models/id3"
    25  	_ "trimmer.io/go-xmp/models/itunes"
    26  	_ "trimmer.io/go-xmp/models/ixml"
    27  	_ "trimmer.io/go-xmp/models/mp4"
    28  	_ "trimmer.io/go-xmp/models/pdf"
    29  	_ "trimmer.io/go-xmp/models/pm"
    30  	_ "trimmer.io/go-xmp/models/ps"
    31  	_ "trimmer.io/go-xmp/models/qt"
    32  	_ "trimmer.io/go-xmp/models/riff"
    33  	_ "trimmer.io/go-xmp/models/tiff"
    34  	_ "trimmer.io/go-xmp/models/xmp_base"
    35  	_ "trimmer.io/go-xmp/models/xmp_bj"
    36  	_ "trimmer.io/go-xmp/models/xmp_dm"
    37  	_ "trimmer.io/go-xmp/models/xmp_mm"
    38  	_ "trimmer.io/go-xmp/models/xmp_rights"
    39  	_ "trimmer.io/go-xmp/models/xmp_tpg"
    40  )