blob: 86080d784b90813f33bed27abd1638425aa72c15 [file] [log] [blame]
Chip Boling6e27b352020-02-14 09:10:01 -06001/*
2 * Copyright (c) 2018 - present. Boling Consulting Solutions (bcsw.net)
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 * http://www.apache.org/licenses/LICENSE-2.0
8 * Unless required by applicable law or agreed to in writing, software
9 * distributed under the License is distributed on an "AS IS" BASIS,
10 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 * See the License for the specific language governing permissions and
12 * limitations under the License.
13 */
14/*
15 * NOTE: This file was generated, manual edits will be overwritten!
16 *
17 * Generated by 'goCodeGenerator.py':
18 * https://github.com/cboling/OMCI-parser/README.md
19 */
20
21// Package generated provides code-generated OMCI types
22package generated
23
24// This file is used to track the version(s) of code used to parse the ITU
25// document and create the generated code.
26
27// VersionInfo provides information on the parser/generator version used to create
28// the generated data as well as the time of code generation
29type VersionInfo struct {
30 Name string // Type (pre-parser, parser, code-generator)
31 Version string // Version of parser project
32 CreateTime float32 // UTC linux time when ran
33 ItuDocName string // ITU G.988 document name
34 SHA256 string // ITU G.988 document SHA-256 hash
35}
36
37// Version provides version information of this generated cooe
38var Versions []VersionInfo
39
40func init() {
41 Versions = make([]VersionInfo, 0)
42
43 Versions = append(Versions,
44 VersionInfo{
45 Name: "parser",
46 Version: "0.15.1",
47 CreateTime: 1581434999.76667,
48 ItuDocName: "T-REC-G.988-2017-11.docx",
49 SHA256: "96ffc8bca6f70175c8e281e87e1cf21662d07a7502ebf595c5c3180a9972b9ac",
50 })
51
52 Versions = append(Versions,
53 VersionInfo{
54 Name: "pre-parser",
55 Version: "0.12.2",
56 CreateTime: 1574973863.791287,
57 ItuDocName: "T-REC-G.988-2017-11.docx",
58 SHA256: "96ffc8bca6f70175c8e281e87e1cf21662d07a7502ebf595c5c3180a9972b9ac",
59 })
60
61 Versions = append(Versions,
62 VersionInfo{
63 Name: "code-generator",
64 Version: "0.15.1",
65 CreateTime: 1581435018.598259,
66 ItuDocName: "T-REC-G.988-2017-11.docx",
67 SHA256: "96ffc8bca6f70175c8e281e87e1cf21662d07a7502ebf595c5c3180a9972b9ac",
68 })
69}