Skip to content

Commit

Permalink
🎨 Generated code
Browse files Browse the repository at this point in the history
  • Loading branch information
jiro4989 committed Dec 25, 2019
1 parent 3ac826f commit bcb12f6
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 17 deletions.
18 changes: 10 additions & 8 deletions src/faker/provider/address.nim
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
import util, ../base, address/[address_en_US, address_ja_JP]
# ----------------------------------------------- #
# This module was generated by 'nimble genProvs'. #
# See 'faker.nimble'. #
# ----------------------------------------------- #

import util
import ../base
import address/[address_ja_JP, address_en_US]
export base

genProc address,
Expand All @@ -9,26 +16,21 @@ genProc address,
cityPrefix,
citySuffix,
country,
#countryCode,
militaryApo,
militaryDpo,
militaryShip,
militaryState,
postalcode,
#postalcodeInState,
postalcodePlus4,
postcode,
secondaryAddress,
state,
#stateAbbr,
streetAddress,
streetName,
streetSuffix,
zipcode,
#zipcodeInState,
zipcodePlus4,
],
[
], [
en_US,
ja_JP,
]
]
14 changes: 10 additions & 4 deletions src/faker/provider/job.nim
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
import util, ../base, job/[job_en_US, job_ja_JP]
# ----------------------------------------------- #
# This module was generated by 'nimble genProvs'. #
# See 'faker.nimble'. #
# ----------------------------------------------- #

import util
import ../base
import job/[job_en_US, job_ja_JP]
export base

genProc job,
[
job,
],
[
], [
en_US,
ja_JP,
]
]
16 changes: 11 additions & 5 deletions src/faker/provider/phone_number.nim
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
import util, ../base, phone_number/[phone_number_en_US, phone_number_ja_JP]
# ----------------------------------------------- #
# This module was generated by 'nimble genProvs'. #
# See 'faker.nimble'. #
# ----------------------------------------------- #

import util
import ../base
import phone_number/[phone_number_en_US, phone_number_ja_JP]
export base

genProc phoneNumber,
genProc phone_number,
[
phoneNumber,
msisdn,
],
[
], [
en_US,
ja_JP,
]
]

0 comments on commit bcb12f6

Please sign in to comment.