Skip to content

Commit

Permalink
Fix access modifier for inputBindings & outputBindings in Context (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
SalehAlbuga authored Nov 30, 2019
1 parent 43e45a6 commit 161b626
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/AzureFunctions/Context.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ public final class Context {

internal var bindings: [String: Any] = [:]

var inputBindings: [String: Any] = [:]
var outputBindings: [String: Any] = [:]
public var inputBindings: [String: Any] = [:]
public var outputBindings: [String: Any] = [:]

internal init () { }

Expand Down

0 comments on commit 161b626

Please sign in to comment.