Files
learngo/x-tba/functions/03-project-pricings/pricing/pricing.go
Inanc Gumus 7247967ef3 add: funcs
2019-04-12 00:08:31 +03:00

16 lines
350 B
Go

// For more tutorials: https://blog.learngoprogramming.com
//
// Copyright © 2018 Inanc Gumus
// Learn Go Programming Course
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
//
package pricing
const separator = ","
// New parses and returns a new Properties data
func New(data string) Properties {
return Properties{parse(data)}
}