GoCollections/lang/generate_types.py
2022-11-25 18:19:33 +08:00

9 lines
314 B
Python

# Copyright (c) 2022 tursom. All rights reserved.
# Use of this source code is governed by a GPL-3
# license that can be found in the LICENSE file.
import types_generator
for type in ["int", "int8", "int16", "int32", "int64", "uint", "uint8", "uint16", "uint32", "uint64"]:
types_generator.generate(type)