Moibe commited on
Commit
8f8d31a
·
1 Parent(s): a7d58d6
Files changed (2) hide show
  1. autenticacion.py +2 -0
  2. globales.py +6 -1
autenticacion.py CHANGED
@@ -2,6 +2,8 @@ import os
2
  import socket
3
 
4
  def defineAmbiente(env):
 
 
5
  if local_check():
6
  print("Entorno Local...")
7
  import bridges
 
2
  import socket
3
 
4
  def defineAmbiente(env):
5
+
6
+ print("Estoy en defineambiente...")
7
  if local_check():
8
  print("Entorno Local...")
9
  import bridges
globales.py CHANGED
@@ -1,4 +1,9 @@
1
  import autenticacion
2
 
 
 
3
  env = 'prod' #o dev
4
- llave, webhook = autenticacion.defineAmbiente(env)
 
 
 
 
1
  import autenticacion
2
 
3
+ print("Estoy en globales...")
4
+
5
  env = 'prod' #o dev
6
+ llave, webhook = autenticacion.defineAmbiente(env)
7
+
8
+ print("La llave es: ", llave)
9
+ print("Y el webhook es: ", webhook)