What is Golang\'s equivalent of the below python commands ?
import argparse parser = argparse.ArgumentParser(description=\"something\") parser.add_argument(\
Use flag.String() to get the entire list of values for the argument you need and then split it up into individual items with strings.Split().