The tutorial thing asks the user to copy this (cut)
point := influxdb3.NewPointWithMeasurement("census").
AddTag("location", data[key]["location"].(string)).
AddField(data[key]["species"].(string), data[key]["count"])
But *Point type has no function for AddTag and AddField, I changed it to SetTag and SetField and then it worked. Plz fix
point := influxdb3.NewPointWithMeasurement("census").
SetTag("location", data[key]["location"].(string)).
SetField(data[key]["species"].(string), data[key]["count"])